diff options
author | Teddy Wing | 2014-04-24 00:25:06 -0400 |
---|---|---|
committer | Teddy Wing | 2014-04-24 00:25:06 -0400 |
commit | 93d230a3d9e5dcf26f7d680305edde4e6f3e33e3 (patch) | |
tree | b74f9909dafd085dfb024830121bae4b8268ce68 /vimrc | |
parent | 413aaec42897924d649ddbad2671c9dce8c87bd9 (diff) | |
download | dotvim-93d230a3d9e5dcf26f7d680305edde4e6f3e33e3.tar.bz2 |
vimrc: set EasyGrep to ignore case
Ignore case by default when searching with EasyGrep.
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -76,6 +76,9 @@ " * Move project-specific settings into ~/.vim/projects and source all " files in that directory " +" 2014.04.23: +" * Set EasyGrep to be case insensitive by default +" " Pathogen @@ -232,6 +235,7 @@ let g:PreserveNoEOL = 1 let g:EasyGrepCommand = 1 " Use grep instead of vimgrep let g:EasyGrepRecursive = 1 " Recursive search enabled let g:EasyGrepEveryMatch = 1 " Multiple matches on the same line are distinct +let g:EasyGrepIgnoreCase = 1 let g:EasyGrepReplaceAllPerFile = 1 |