Skip to content

Commit

Permalink
Fix: Don't use extenral diff tool when performing diff (#573)
Browse files Browse the repository at this point in the history
  • Loading branch information
szuliq authored Dec 31, 2022
1 parent e539493 commit e25159e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def _run_diff(self, updated_git_file):
'-c', 'core.autocrlf=input',
'-c', 'core.eol=lf',
'-c', 'core.safecrlf=false',
'diff', '-U0', '--no-color', '--no-index',
'diff', '-U0', '--no-color', '--no-index', '--no-ext-diff',
self.settings.ignore_whitespace,
self.settings.diff_algorithm,
self.translate_path_to_wsl(self._git_temp_file.name),
Expand Down

0 comments on commit e25159e

Please sign in to comment.