From 3aaeaca87b5ab2aa7f13bc56630e906d8a71f0d3 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Thu, 7 Mar 2019 20:01:28 -0500 Subject: [PATCH] Fix restore of sequence editor --- autoload/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/fugitive.vim b/autoload/fugitive.vim index 8e68428..ceeed51 100644 --- a/autoload/fugitive.vim +++ b/autoload/fugitive.vim @@ -2906,7 +2906,7 @@ function! s:Merge(cmd, bang, mods, args, ...) abort let $GIT_EDITOR = old_editor endif if exists('old_sequence_editor') - let $GIT_SEQUENCE_EDITOR = old_editor + let $GIT_SEQUENCE_EDITOR = old_sequence_editor endif execute cdback endtry