I've noticed VIM on my Mac doesn't have the line/column numbers in the bottom-right corner of the window whereas VIM on Ubuntu does. Is there a profile setting I can use to get my Mac to show these numbers?

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

Try the command ":set ruler".

link|improve this answer
feedback

As Heptite described, the command :set ruler results in the line/column information I was looking for. If you want to make this behavior permanent, edit your ~/.vimrc file to include the following line:

set ruler
link|improve this answer
at first I didn't have a ~/.vimrc, I only had a ~/.viminfo and I tried to edit that but it silently failed saving my changes. So I had to create a new file at ~/.vimrc and it's working great! – Patrick Apr 27 at 18:14
feedback

You want to configure your statusline in .vimrc, with %l and %c denoting lines and columns, respectively. http://vim.runpaint.org/display/changing-status-line

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.