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.

5 Answers

The command:

vim --version

This is pretty standard for all unix executables.

3

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

:version
0

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

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like