Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what do "All" and "Bot" mean in vim status line?

Tags:

linux

vim

unix

and how can I print the blueprint of the statusline?

set statusline? prints blank (statusline=) which doesn't seem correct to me as my statusline shows filename, row and column numbers as well as "All" or "Bot" at the end.

like image 891
Lavya Avatar asked Feb 19 '15 10:02

Lavya


People also ask

What is Vim status line?

The statusline in Vim is the bar along the bottom of the Vim window. By default it does not show when you open Vim until there is more than one window.

What does Q mean in Vim?

In order to quit from the Vim without saving changes, you should write :q! , it will quit the Vim and ! will work as a negation, which will negate the write operation.


1 Answers

  • Bot - Bottom of file / last line is visible
  • All - first and last line are visible
  • Top - Top of file / first line is visible
like image 74
richq Avatar answered Nov 02 '22 23:11

richq