Hi,
Can I check if I am running vim or neovim? I have a symlink and run both Vim and Neovim with the same config files. Can I have something like this in my vimrc, nvimrc files?
if neovim
something
else
something else
Thank you!
Sure, try this
if has('nvim')
...
This is mentioned in #1272 and #1608 (not saying you should have seen them given they're practically hidden, just putting them out there).
That was fast! Thank you!
Most helpful comment
Sure, try this