Remove feature gitgutter_escape_grep

Reverts feature introduced in 5c23cadf57

In order to use an escaped grep, please replace
`g:gitgutter_escape_grep=1` with:

    let g:gitgutter_grep_command = '\grep --color=never -e'
This commit is contained in:
Dan Church
2016-01-15 10:27:06 -06:00
committed by Andy Stewart
parent 8d229c222c
commit 3131bdcbb8
4 changed files with 2 additions and 18 deletions

View File

@@ -4,7 +4,7 @@ if exists('g:gitgutter_grep_command')
else
let s:grep_available = executable('grep')
if s:grep_available
let s:grep_command = (g:gitgutter_escape_grep ? '\grep' : 'grep')
let s:grep_command = 'grep'
let s:grep_help = gitgutter#utility#system('grep --help')
if s:grep_help =~# '--color'
let s:grep_command .= ' --color=never'