summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Haller <stefan@haller-berlin.de>2023-06-05 15:18:45 +0200
committerGitHub <noreply@github.com>2023-06-05 15:18:45 +0200
commita741b81b2132bcf68a0ad9721415885052e39b5a (patch)
tree1a556c081164d8430cfcf2d6514966687cd6682e
parente6fc33274841fc9ab8eb711fc67299dae048ff74 (diff)
parentcbbb281011d033da290bf394900b6f849cbbb901 (diff)
Merge pull request #2708 from enricozb/patch-1
fix kakoune binary name
-rw-r--r--pkg/config/editor_presets.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/config/editor_presets.go b/pkg/config/editor_presets.go
index eef1c7bed..d489c9283 100644
--- a/pkg/config/editor_presets.go
+++ b/pkg/config/editor_presets.go
@@ -43,7 +43,7 @@ func getPreset(osConfig *OSConfig, guessDefaultEditor func() string) *editPreset
"nvim": standardTerminalEditorPreset("nvim"),
"emacs": standardTerminalEditorPreset("emacs"),
"nano": standardTerminalEditorPreset("nano"),
- "kakoune": standardTerminalEditorPreset("kakoune"),
+ "kakoune": standardTerminalEditorPreset("kak"),
"helix": {
editTemplate: "hx -- {{filename}}",
editAtLineTemplate: "hx -- {{filename}}:{{line}}",