From 8efcf72bfb4f1a01036a27a48bb0d0db8979151a Mon Sep 17 00:00:00 2001 From: Andrei Korshikov Date: Fri, 11 Aug 2023 14:57:53 +0600 Subject: [PATCH] Fix #1893: git commit should be able to wait for kate editor Kate editor must be started with "--block" option so git commit can patiently wait for the editor to close the commit message file. --- C-git-commands.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C-git-commands.asc b/C-git-commands.asc index bd3dd1861..79c497545 100644 --- a/C-git-commands.asc +++ b/C-git-commands.asc @@ -56,7 +56,7 @@ Accompanying the configuration instructions in <>, |Gedit (Linux) |`git config --global core.editor "gedit --wait --new-window"` |Gvim (Windows 64-bit) |`git config --global core.editor "'C:\Program Files\Vim\vim72\gvim.exe' --nofork '%*'"` (Also see note below) |Helix |`git config --global core.editor "helix"` -|Kate (Linux) |`git config --global core.editor "kate"` +|Kate (Linux) |`git config --global core.editor "kate --block"` |nano |`git config --global core.editor "nano -w"` |Notepad (Windows 64-bit) |`git config core.editor notepad` |Notepad++ (Windows 64-bit) |`git config --global core.editor "'C:\Program Files\Notepad++\notepad++.exe' -multiInst -notabbar -nosession -noPlugin"` (Also see note below)