From 17a0e787a304a67188cd10855ae5b2089a7387ec Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 4 Jul 2012 20:48:22 +0200 Subject: [PATCH] vimrc: Minor documentation updates. --- vimrc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/vimrc b/vimrc index e8e945e..d4f3939 100644 --- a/vimrc +++ b/vimrc @@ -156,8 +156,8 @@ set incsearch " Activate syntax folding. if has('folding') set foldmethod=syntax - " Only use fold column if we have enough space (for example in a (virtual) - " terminals). + " Only use fold column if we have enough space (for example not in a + " (virtual) terminal which has only 80 columns). if &columns > 80 set foldcolumn=2 endif @@ -366,7 +366,7 @@ endif " modified by a plugin or other settings. Except for which isn't " affected by mappings. -" Easy way to exit insert mode. +" Easy way to exit insert mode. jk is preferred because it's faster. inoremap jj inoremap jk " Also for command mode, thanks to http://github.com/mitechie/pyvim @@ -425,7 +425,8 @@ endif " Write before suspending, thanks to deryni in #vim on Freenode (2011-05-09 " 20:02 CEST). To suspend without saving either unmap this or use :stop. -" Only the current buffer is written. +" Only the current buffer is written, thus switching to another buffer works +" too. nnoremap :update:stop " 2 gives more verbose information, use it by default. Thanks to NCS_One -- 2.44.1