From: Simon Ruderich Date: Sun, 17 Jun 2012 13:40:44 +0000 (+0200) Subject: vimrc: Documentation update. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=9b31fb9a24f2ee07015f38ca5433c99f69ffb0b9 vimrc: Documentation update. --- diff --git a/vimrc b/vimrc index 623b60f..a0afc90 100644 --- a/vimrc +++ b/vimrc @@ -148,7 +148,7 @@ if has('folding') " folding which is not what I want endif -" Only check for case if the searched word contains a capital character. +" Only check case if the searched word contains a capital character. set ignorecase set smartcase @@ -162,7 +162,8 @@ if exists('+spell') && has('syntax') endif " Allow buffers with changes to be hidden. Very important for effective -" editing with multiple buffers. +" editing with multiple buffers. Prevents the "E37: No write since last change +" (add ! to override)" warning. set hidden @@ -174,7 +175,7 @@ set background=dark " Display line numbers. set number -" But use as little space as necessary for the numbers column. Thanks to James +" But use as little space as possible for the numbers column. Thanks to James " Vega (http://git.jamessan.com/?p=etc/vim.git;a=summary). if exists('+numberwidth') set numberwidth=1 @@ -327,6 +328,7 @@ 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. nnoremap :update:stop " 2 gives more verbose information, use it by default. Thanks to NCS_One