Quantcast
Channel: how can I check which version of vim I have installed? - Super User
Browsing latest articles
Browse All 6 View Live

Answer by Adam Erickson for how can I check which version of vim I have...

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).

View Article



Answer by German for how can I check which version of vim I have installed?

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.

View Article

Answer by akira for how can I check which version of vim I have installed?

or, just if you run vim already and want to know what you are in right now::version

View Article

Answer by Martin Hilton for how can I check which version of vim I have...

In a terminal run vim --version ther version number is in the top line of output.

View Article

Answer by ghoppe for how can I check which version of vim I have installed?

The command:vim --versionThis is pretty standard for all unix executables.

View Article


how can I check which version of vim I have installed?

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.

View Article
Browsing latest articles
Browse All 6 View Live




Latest Images