From be658e7d64c8d120a6c7ca9c59cbb05957135c1d Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sun, 16 Aug 2020 19:01:55 +1000 Subject: [PATCH] support multi word editor config --- pkg/commands/os.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/commands/os.go b/pkg/commands/os.go index 449c45b2c..81ebf951a 100644 --- a/pkg/commands/os.go +++ b/pkg/commands/os.go @@ -249,7 +249,9 @@ func (c *OSCommand) EditFile(filename string) (*exec.Cmd, error) { return nil, errors.New("No editor defined in $VISUAL, $EDITOR, or git config") } - return c.PrepareSubProcess(editor, filename), nil + splitCmd := str.ToArgv(fmt.Sprintf("%s %s", editor, filename)) + + return c.PrepareSubProcess(splitCmd[0], splitCmd[1:]...), nil } // PrepareSubProcess iniPrepareSubProcessrocess then tells the Gui to switch to it