]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - vimrc
vimrc,gvimrc: Minor documentation update.
[config/dotfiles.git] / vimrc
diff --git a/vimrc b/vimrc
index 11ee374f06113a46e716e2aa9204483c021bdaa0..9c3833a734067cd47e2f92b1014417daeabde6b9 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -51,7 +51,7 @@ set runtimepath^=~/.vim,~/.vim/runtime
 
 " Don't store swap files in the same directory as the edited file.
 set directory-=.
-" But store them in ~/.tmp if available.
+" But store them in ~/.tmp if available or ~/tmp (used by default).
 set directory^=~/.tmp
 
 " Disable modelines as they may cause security problems. Instead use
@@ -638,6 +638,12 @@ if has('autocmd')
             autocmd QuickFixCmdPre * write
         endif
 
+" Don't ignore case while in insert mode, but ignore case in all other modes.
+" This causes <C-N>/<C-P> to honor the case and thus only complete matching
+" capitalization. But while searching (/) 'ignorecase' is used.
+        autocmd InsertEnter * set noignorecase
+        autocmd InsertLeave * set   ignorecase
+
 " AFTER/FTPLUGIN AUTO COMMANDS
 
 " Disable spell checking for files which don't need it.