Reputation: 24248
For displaying line numbers in a file, I use command:
set numbers
What is the command to clear line numbers from the file?
Upvotes: 137
Views: 160474
Reputation: 156
write command in terminal:
vi ~/.vimrc
for set the number:
write set number
for remove number:
write set nonumber
Upvotes: 0
Reputation: 11
set number
set nonumber
DO work inside .vimrc
and make sure you DO NOT precede commands in .vimrc
with :
Upvotes: 0
Reputation: 6241
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
Upvotes: 233
Reputation: 4752
For turning off line numbers, any of these commands will work:
Upvotes: 9
Reputation: 7049
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
Upvotes: 3
Reputation: 37566
From the Document "Mastering the VI editor":
number (nu)
Displays lines with line numbers on the left side.
Upvotes: 0
Reputation: 1678
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.
Upvotes: 22
Reputation: 3701
To turn off line numbering, again follow the preceding instructions, except this time enter the following line at the : prompt:
set nonumber
Upvotes: 16