X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vimrc;h=3277112936114a2c693e4ec0c11b6dc566ee75e3;hb=fd5a25d7999ff717d5b7a72126c87ad5ef94a561;hp=11ee374f06113a46e716e2aa9204483c021bdaa0;hpb=9407c798a8c30697b538fdd06d620c1600f0410e;p=config%2Fdotfiles.git 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.