Miklos Somogyi schrieb: > Hello Folks, > > I am familiar with vi but new to vim. I used to use the map instruction to do > a lot of goodies for me. > However, my new keyboard (diNovo Edge for Mac) would not let me program the > function keys, so > I got interested in vim's abbreviations. > > I can do double quotes for groff in insert mode, but I can not master > normal/command mode. > E.g. > > cabbrev ;; :q!<CR> > > should quit a session but it does not. What's wrong? > > Friday > Hi, you should use a mapping instead:
nmap ;; :q!<CR> see :h :map-commands for additional information Regards, Gregor -- You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php
