Vim
Vim copied to clipboard
Reset to normal mode when leaving file focus
Is your feature request related to a problem? Please describe. I have a lot of files open, I'd like to automatically escape INSERT mode when changing focus into another file/tab
Describe the solution you'd like Just a flag in the settings to reset to normal mode when focusing a new tab / leaving focus on another tab
Describe alternatives you've considered I inspected the settings of the extension, but I found nothing
This would be nice
That would be nice 2
On Vim we can do it adding this to vimrc:
" Back to NORMAL mode when terminal window loses focus
autocmd FocusLost * call feedkeys("\<esc>")
This feature would also be very useful for me too :)