Not sure why this is happening, but I'm pretty sure this plugin breaks the v:swapchoice varaible.
I have a section of code in my vimrc like:
augroup NoSimultaneousEdits
autocmd!
autocmd SwapExists * let v:swapchoice = 'o'
augroup END
Here's some online explanation.
It looks like vim (and nvim) no longer respect the swapchoice setting when this plugin is loaded. It works for 'q' and 'a' (I didn't try others), but not 'o' (probably the most common choice). Any idea what's going on here?
Not sure why this is happening, but I'm pretty sure this plugin breaks the
v:swapchoicevaraible.I have a section of code in my vimrc like:
Here's some online explanation.
It looks like vim (and nvim) no longer respect the swapchoice setting when this plugin is loaded. It works for
'q'and'a'(I didn't try others), but not'o'(probably the most common choice). Any idea what's going on here?