lambdalisue / vim-gina

👣 Asynchronously control git repositories in Neovim/Vim 8
http://www.vim.org/scripts/script.php?script_id=5531
MIT License
689 stars 27 forks source link

Gina commit not executes command after :bd #257

Closed Shatur closed 4 years ago

Shatur commented 4 years ago

If I use :w and then :bd git commit command will be not performed. Is it expected? In vim-fugitive, closing the commit buffer causes commiting.

lambdalisue commented 4 years ago

It's expected while gina uses QuitPre which is invoked by :q.

Shatur commented 4 years ago

Thank you!