diff --git a/git/realgit/realcmd.go b/git/realgit/realcmd.go index fe63f56..5bd4a43 100644 --- a/git/realgit/realcmd.go +++ b/git/realgit/realcmd.go @@ -77,6 +77,7 @@ func (c *gitcmd) GitWithEditor(argStr string, output *string, editorCmd string) "-c", fmt.Sprintf("core.editor=%s", editorCmd), "-c", "commit.verbose=false", "-c", "rebase.abbreviateCommands=false", + "-c", fmt.Sprintf("sequence.editor=%s", editorCmd), } args = append(args, strings.Split(argStr, " ")...) cmd := exec.Command("git", args...)