Vim Tips Wiki
Register
Advertisement
Tip 725 Printable Monobook Previous Next

created 2004 · complexity basic · author Devin Weaver · version 6.0


Add this simple mapping into your vimrc to make a quick way to backup your document by typing \b in normal mode.

" For safe measures lets make a quick backup mapping.
nnoremap <Leader>b :let x=&backup<Bar>set backup<Bar>write<Bar>let &backup=x<Bar>unlet x<Cr>

Comments[]

Advertisement