Vim Tips Wiki
Advertisement
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Tip 997 Printable Monobook Previous Next

created 2005 · complexity basic · version 6.0


To save a file, we do <Esc>:w<Enter>.

If you add the following line to your vimrc, you can easily save a file by pressing F2.

map <F2> :w! <CR>

Comments

I just press ZZ to save and exit.


F2 is too far away from where I keep my fingers - I prefer the following:

map W :wa^M
map! ^W ^[:wa^Ma

This makes W save all buffers in command mode and Ctrl+W do the same in insert mode.


Advertisement