From e25159e415212790890b9503e7aa556df13b6993 Mon Sep 17 00:00:00 2001 From: Krzysztof Szularz Date: Sat, 31 Dec 2022 18:30:59 +0100 Subject: [PATCH] Fix: Don't use extenral diff tool when performing diff (#573) --- modules/handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/handler.py b/modules/handler.py index e81f5f0..52dbbfb 100644 --- a/modules/handler.py +++ b/modules/handler.py @@ -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),