Christian Brabandt wrote:
[snip]
Something like this may be?
fu! <sid>MyWMotion(count)
for i in range(a:count)
call search('\i\+')
endfor
endfu
noremap <silent> w :<c-u>call <sid>MyWMotion(v:count1)<cr>
I haven't looked at how to make this work with visual mode yet.
regards,
Christian
Excellent! Here I extended this to handle 'b'. I think that's enough for
now, when I have a bit more spare time, I'll think of adding more stuff.
fu! <sid>MyWMotion(count, dir)
for i in range(a:count)
if a:dir
call search('\i\+', 'b')
else
call search('\i\+')
endif
endfor
endfu
nnoremap <silent> w :<c-u>call <sid>MyWMotion(v:count1, 0)<cr>
nnoremap <silent> b :<c-u>call <sid>MyWMotion(v:count1, 1)<cr>
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
To unsubscribe from this group, send email to vim_use+unsubscribegooglegroups.com or
reply to this email with the words "REMOVE ME" as the subject.