I'm running Mac OS X Snow Leopard. How can I check which version of vim I have installed?
Ideally I'd like to know a general solution for checking software versions via the command line.
I'm running Mac OS X Snow Leopard. How can I check which version of vim I have installed?
Ideally I'd like to know a general solution for checking software versions via the command line.
or, just if you run vim already and want to know what you are in right now:
:version
In a terminal run vim --version ther version number is in the top line of output.
You can also just open a blank VIM document by typing vi or vim in your terminal. The welcome screen will state your version as well as other information.
For vim or neovim using regex:
vi --version | grep -oP '(?<=^VIM v)[0-9|.]+'
vi --version | grep -oP '(?<=^NVIM v)[0-9|.]+'
Assumes your grep has perl compatible regex (PCRE).