How to take off line numbers in Vi?
For displaying line numbers in a file, I use command:
set numbers
What is the command to clear line numbers from the file?
Solution 1:
If you are talking about show line number command in vi/vim
you could use
set nu
in commandline mode to turn on and
set nonu
will turn off the line number display or
set nu!
to toggle off display of line numbers
Solution 2:
Display line numbers:
:set nu
Stop showing the line numbers:
:set nonu
Its short for :set nonumber
ps. These commands are to be run in normal mode.
Solution 3:
To turn off line numbering, again follow the preceding instructions, except this time enter the following line at the : prompt:
set nonumber
Solution 4:
For turning off line numbers, any of these commands will work:
- :set nu!
- :set nonu
- :set number!
- :set nonumber
Solution 5:
Easily Display Line number:
set number flag (to show line number type)
:set nu
or :set number
to unset the number flag (hide the line number type)
:set nu!
If you need number every time you start vi/vim
, append following line to your ~/.vimrc
file:
set number
Open a file at particular location/line number
$ vi +linenumber file.rb
$ vi +300 initlib.rb