On 4/30/06, shello <[EMAIL PROTECTED]> wrote:
Is there any quick way to move to the end of the line in insert mode ? i map a key to do that : inoremap <A-a> <ESC>$a But it doesn't work ! Where is my mistake?
There is no mistake. <M-A> does not work on some terminals. Try control-keys, or Fn keys, or <End> key if your keyboard has it, or CTRL-O $ On the rhs of the mapping, you can use <C-O>$ Yakov
