On Sat, May 23, 2009 at 9:51 PM, lowly coder <[email protected]>wrote:
> let me rephrase this, i don't want to bind c-j to c-e; I want to bind c-j > to what c-e is bound to (and then bound c-e to something else) Hi! I've done exactly this myself. The trick is to use nnoremap. This makes sure c-j doesn't change behavior when you remap c-e. Stick this in your vimrc: nnoremap <c-j> <c-e> nnoremap <c-k> <c-y> Regards, Per Thulin --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
