Skip to content

Commit

Permalink
add param for git "--no-ext-diff" the absence of this param leads to …
Browse files Browse the repository at this point in the history
…problems if the git is configered to use external merge tool
  • Loading branch information
Aleksei Kvitinskii authored and ghewgill committed Nov 29, 2010
1 parent c32b7ee commit fe8742b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scmdiff.vim
Expand Up @@ -76,7 +76,7 @@ function! s:detectSCM()
let my_path = g:scmBufPath
while my_path != "/"
if !exists("g:scmDiffCommand") && isdirectory(my_path."/.git")
let g:scmDiffCommand = "git diff"
let g:scmDiffCommand = "git diff --no-ext-diff"
return
endif
if !exists("g:scmDiffCommand") && isdirectory(my_path."/.hg")
Expand Down

0 comments on commit fe8742b

Please sign in to comment.