Reputation: 4675
I'm trying to get the count of lines in the current file using vimscript but I can't figure out how (and google is returning a bunch of crap about showing line numbers).
Upvotes: 75
Views: 61946
Reputation: 59
In vi, i usually get the lines by the below method.
:set number and then shift+g
Upvotes: 3
Reputation: 1643
Pressing ctrl-g
will reveal the filename, current line, the line count, your current position as a percentage, and your cursor's current column number.
Upvotes: 62
Reputation: 21
The variable %L
already contains the total number of lines.
You could use :echo %L
or :set statusline+=%L
to append it to the status
Upvotes: 0
Reputation: 3822
when you select an area, then vim shows in corner how many lines you have selected
if you have following in your .vimrc file:
set statusline=%f\ %l,%c
Upvotes: 2