From 61fa81e3f47859d123ad0b8887ff2d7a82288264 Mon Sep 17 00:00:00 2001 From: Sean Jacobs Date: Mon, 5 Oct 2020 23:02:14 +1100 Subject: [PATCH 1/2] removed `--add` from TextEdit core.editor config Removed the erroneous --add parameter from the example core.editor config used for TextEdit. --- 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 65077c192..7c8241df6 100644 --- a/C-git-commands.asc +++ b/C-git-commands.asc @@ -62,7 +62,7 @@ Accompanying the configuration instructions in <>, |Scratch (Linux)|`git config --global core.editor "scratch-text-editor"` |Sublime Text (macOS) |`git config --global core.editor "/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl --new-window --wait"` |Sublime Text (Windows 64-bit) |`git config --global core.editor "'C:\Program Files\Sublime Text 3\sublime_text.exe' -w"` (Also see note below) -|TextEdit (macOS)|`git config --global --add core.editor "open -W -n"` +|TextEdit (macOS)|`git config --global core.editor "open -W -n"` |Textmate |`git config --global core.editor "mate -w"` |Textpad (Windows 64-bit) |`git config --global core.editor "'C:\Program Files\TextPad 5\TextPad.exe' -m` (Also see note below) |UltraEdit (Windows 64-bit) | `git config --global core.editor Uedit32` From 682a40c1d761177c066f470e8e272327460bea2f Mon Sep 17 00:00:00 2001 From: Sean Jacobs Date: Thu, 12 Nov 2020 22:38:33 +1100 Subject: [PATCH 2/2] updated TextEdit config with long form options Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> --- 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 7c8241df6..ee9376611 100644 --- a/C-git-commands.asc +++ b/C-git-commands.asc @@ -62,7 +62,7 @@ Accompanying the configuration instructions in <>, |Scratch (Linux)|`git config --global core.editor "scratch-text-editor"` |Sublime Text (macOS) |`git config --global core.editor "/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl --new-window --wait"` |Sublime Text (Windows 64-bit) |`git config --global core.editor "'C:\Program Files\Sublime Text 3\sublime_text.exe' -w"` (Also see note below) -|TextEdit (macOS)|`git config --global core.editor "open -W -n"` +|TextEdit (macOS)|`git config --global core.editor "open --wait-apps --new -e"` |Textmate |`git config --global core.editor "mate -w"` |Textpad (Windows 64-bit) |`git config --global core.editor "'C:\Program Files\TextPad 5\TextPad.exe' -m` (Also see note below) |UltraEdit (Windows 64-bit) | `git config --global core.editor Uedit32`