On Tue, Jul 11, 2006 at 07:50:43AM -0700, Arias Hung wrote:
> When attempting to create a mapping for my muttng.vim file I add the 
> following
> 
> :nmap zz w!<cr>
> 
> however it interprets it literally like:
> 
> w!<cr>
> 
> instead of interpreting the return <cr>.  Anyone know why?

You've made a normal mode mapping.  You want to perform a command-line
mode command, but you haven't entered command-line mode.  Adding a :
should fix your problem. :)

  :nmap zz :w!<CR>

HTH,

James
-- 
GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]>

Attachment: signature.asc
Description: Digital signature

Reply via email to