mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-04 10:34:55 +02:00
Add an editor preset for kakoune (kakoune.org).
This commit is contained in:
parent
b17c38befd
commit
6c010a788c
@ -42,6 +42,7 @@ func getPreset(osConfig *OSConfig, guessDefaultEditor func() string) *editPreset
|
|||||||
"nvim": standardTerminalEditorPreset("nvim"),
|
"nvim": standardTerminalEditorPreset("nvim"),
|
||||||
"emacs": standardTerminalEditorPreset("emacs"),
|
"emacs": standardTerminalEditorPreset("emacs"),
|
||||||
"nano": standardTerminalEditorPreset("nano"),
|
"nano": standardTerminalEditorPreset("nano"),
|
||||||
|
"kakoune": standardTerminalEditorPreset("kakoune"),
|
||||||
"vscode": {
|
"vscode": {
|
||||||
editTemplate: "code --reuse-window -- {{filename}}",
|
editTemplate: "code --reuse-window -- {{filename}}",
|
||||||
editAtLineTemplate: "code --reuse-window --goto -- {{filename}}:{{line}}",
|
editAtLineTemplate: "code --reuse-window --goto -- {{filename}}:{{line}}",
|
||||||
@ -70,6 +71,7 @@ func getPreset(osConfig *OSConfig, guessDefaultEditor func() string) *editPreset
|
|||||||
|
|
||||||
// Some of our presets have a different name than the editor they are using.
|
// Some of our presets have a different name than the editor they are using.
|
||||||
editorToPreset := map[string]string{
|
editorToPreset := map[string]string{
|
||||||
|
"kak": "kakoune",
|
||||||
"code": "vscode",
|
"code": "vscode",
|
||||||
"subl": "sublime",
|
"subl": "sublime",
|
||||||
"xed": "xcode",
|
"xed": "xcode",
|
||||||
|
Loading…
Reference in New Issue
Block a user