I have set ruler in my .vimrc.
If I run vim and then :verbose set ruler? to check the status of this setting, on Ubuntu Linux it says :
noruler
Last set from ~/.vimrc
At the bash prompt, grep says :
$ grep ruler .vimrc
set ruler
And on Debian Linux, :verbose set ruler? says :
noruler
Last set from /usr/share/vim/vim74/debian.vim
At the bash prompt, grep says :
$ grep ruler /usr/share/vim/vim74/debian.vim
set ruler " show the cursor position all the time
Why does set ruler get reset to noruler ?