From fd5a25d7999ff717d5b7a72126c87ad5ef94a561 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 7 Apr 2012 20:53:38 +0200 Subject: [PATCH] vimrc: Don't use 'ignorecase' for insert mode completion. I want to honor case in insert mode completion, but not while searching. --- vimrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vimrc b/vimrc index 11ee374..3277112 100644 --- a/vimrc +++ b/vimrc @@ -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 / 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. -- 2.44.1