]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Write current file when suspending (<C-Z>).
authorSimon Ruderich <simon@ruderich.org>
Sat, 17 Sep 2011 12:28:51 +0000 (14:28 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sat, 17 Sep 2011 12:28:51 +0000 (14:28 +0200)
vimrc

diff --git a/vimrc b/vimrc
index 6e418649e4614f92f96b12a41da0f65ebbeaa9c9..35edbdfd31b057f2f582cfe370fccd0c9d979b5c 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -223,6 +223,10 @@ cmap <Left>  <Nop>
 cnoremap <C-P> <Up>
 cnoremap <C-N> <Down>
 
+" Write before suspending, thanks to deryni in #vim on Freenode (2011-05-09
+" 20:02 CEST). To suspend without saving either unmap it or use :stop<CR>.
+nnoremap <C-Z> :update<CR>:stop<CR>
+
 " Use <Space> to move down a page and - to move up one like in mutt.
 nnoremap <Space> <C-F>
 nnoremap - <C-B>