Miklos Somogyi wrote: > I don't know what, if any, difference is of <Esc> and <ESC>, > between <C-R> and <CR>, :abbrev and abbrev and abbr and ab, > nmap and :nmap, between normal mode and command mode, etc, > not to talk about the <ctrl> things.
First, please bottom post on this list. Quote a small (relevant) part of the message you are replying to, and put your text underneath. See the list guidelines: http://groups.google.com/group/vim_use/web/vim-information <Esc> and <ESC> are the same. Preferred names are at ':help keycodes'. <C-R> is Ctrl-R and <CR> is Enter (carriage return). The command is :nmap ('nmap' is not anything). However, in a script, the : colon is optional. That is, 'nmap ...' means ':nmap ...' in a script. You need to read some basic docs. Most serious Vim users just dive into the help. See: http://vim.wikia.com/wiki/Help John -- You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php
