Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In windoze, when I use Ctrl+right, it moves word to word, and if I get to the end of the line, it stops on the last character of the last word + 1 (maybe that's the EOL character, not sure). In vim, when I reach the last word using Ctrl+right and hit it again, it skips the EOL and goes to the next word on the next line.

How would I get vim to follow the same method windows uses? Do I need to write a script for that?

share|improve this question
1  
"looking for quicker movement in insert mode" .. you are fighting against the modes. movement is done in "normal" mode, so just escape shift-a – akira Mar 2 '11 at 5:53

3 Answers

up vote 3 down vote accepted

Hit Escape, then Shift+A to append (at the EOL). If you fight vim and try to do all your movement in insert mode, vim will win.

share|improve this answer
That's what I usually do because Euro-keyboards have $ in a difficult place. – progo May 30 '11 at 8:44

I don't know how to change this, but did you know that, being in command mode, $ brings you to the EOL?

share|improve this answer
yep, Im looking for quicker movement in insert mode. thanks though! – bryan_ruiz Feb 28 '11 at 18:34
2  
Then no idea, except for the end key – Carlos Campderrós Feb 28 '11 at 18:36
+1 for the end key. Worked by default for me on every Vim/Win system I've used in insert and edit modes. – Michael Berkowski Feb 28 '11 at 18:41
end might work.. id have to write a script though to mimic windows behavior (if word is last word on line, then use end instead of <C+Right> when I hit key sequence "foobar"). – bryan_ruiz Feb 28 '11 at 20:11

Yet another solution:

<C-o> $

while in insert mode. <C-o> allows you to make one normal-mode command and you stay in insert mode.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.