Use plain grep instead of extended grep.

See #410.
This commit is contained in:
Andy Stewart
2017-04-03 13:23:50 +01:00
parent 1c034be0d3
commit 092369c19c
3 changed files with 5 additions and 5 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 = 'grep --color=never -e'
let s:grep_command = 'grep --color=never'
endif
endif
let s:hunk_re = '^@@ -\(\d\+\),\?\(\d*\) +\(\d\+\),\?\(\d*\) @@'