voldikss / vim-floaterm

:computer: Terminal manager for (neo)vim
MIT License
2.46k stars 79 forks source link

fix: Support `git revise --interactive` #421

Closed ghost closed 8 months ago

ghost commented 8 months ago

git-revise is an external Git tool mimicking git-rebase. It operates in-memory and also offers a cut command for splitting commits. It has an interactive mode just like git-rebase.

Currently, attempting git revise --interactive from floaterm fails, because $EDITOR is called with the TODO file and exits immediately.

This PR adds git-revise-todo to the search list in floaterm#edita#{neo,}vim#editor#open.

voldikss commented 8 months ago

Thanks