Re: Moving cursor on wrapped lines

2007-04-15 Thread Pavel Shevaev
Thanks! -- Best regards, Pavel

Re: Moving cursor on wrapped lines

2007-04-14 Thread Tim Chase
Is there any option in vim which reconfigures the behavior of up/down buttons so that they move cursor on wrapped virtual lines like on real lines? While I don't believe there's an option per-se, it's very easy to use :nnoremap up gk :nnoremap down gj :vnoremap up gk

Re: Moving cursor on wrapped lines

2007-04-14 Thread Ricky Zhou
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Pavel Shevaev wrote: Is there any option in vim which reconfigures the behavior of up/down buttons so that they move cursor on wrapped virtual lines like on real lines? There might be a better way that I don't know of, but this tips page describes

Re: Moving cursor on wrapped lines

2007-04-14 Thread Cyril Slobin
On 4/15/07, Tim Chase [EMAIL PROTECTED] wrote: While I don't believe there's an option per-se, it's very easy to use :nnoremap up gk :nnoremap down gj :vnoremap up gk :vnoremap down gj :inoremap up c-ogk :inoremap down c-ogj to map the desired

Re: Moving cursor on wrapped lines

2007-04-14 Thread A.J.Mechelynck
Cyril Slobin wrote: On 4/15/07, Tim Chase [EMAIL PROTECTED] wrote: While I don't believe there's an option per-se, it's very easy to use :nnoremap up gk :nnoremap down gj :vnoremap up gk :vnoremap down gj :inoremap up c-ogk :inoremap down c-ogj