I recently switched from vim to neovim by installing a vim-fugitive plugin. Previously, :Git rebase -i
in vim, I bought up the interactive redirect window in the vim window, which I could edit as I needed :x
from the window, and rebase will be executed.
Now, in neovim, running the same rebase command calls the terminal emulator buffer with interactive rebase inside. The emulator is not modified until I enter the terminal mode by pressing I
. Then I can edit the commits as I need, but how can I close the emulator to do rebase? Is there a way to prevent the terminal emulator from appearing after running the commands :Git
? I looked through the vim-fugitive documentation, but can't find anything about it. Any help would be greatly appreciated, thanks
source
share