Bill Moseley wrote: >> :echo g:mapleader > > That command doesn't work on any of my vim installs, even one > a machine where the perl-support is still working.
That just means there is no variable called mapleader, so you have the default backslash as your <Leader> key. I think your problem is using \rs which used to do one thing, and now does another. This command may be enlightening: :verbose map \r The above will tell you if there is a normal-mode mapping for '\r' (and if so, where it was set). Another approach is to type something like the following commands: :set nomore :redir > m.txt :map :redir END :e m.txt The above redirects the output of ':map' to file m.txt (overwriting that file if it exists), then edits the file so you can slowly inspect it to try to work out what happens when you press \rs. John --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
