Change window exit command to 'confirm qa' #133
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently, when attempting to close Nvy through Windows (Close Button,
Alt-F4
, etc.), it sends the commandqa
to Neovim. This command works fine when there are no unsaved changes, but if there are, it is completely useless: it will neither cause vim to force the exit (as it should not) or cause it to ask the user if the changes should be saved (as it should). The command line will simply say 'Press ENTER or type command to continue', leaving the user actually one step further away from exiting the program, now having to press ENTER and then quitting through another method.A better way would be to send
confirm qa
. This will cause Neovim to ask the user, whether the changes should be saved or not. The user can then pressy
,n
orc
foryes
,no
orcancel
.I think this is much more intuitive and convenient, but at least allows the user to actually exit through the window close event if there are unsaved changes. If there are no unsaved changes, Neovim will obviously exit the same way as with
qa
.