Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

remove vim bottom line? with mode, line, column, etc

Tags:

Is it possible?..

I mean the most bottom line of screen, to get just full terminal screen of buffer lines.

This is not the line controlled by the laststatus variable.

like image 773
spacediver Avatar asked Oct 14 '11 16:10

spacediver


People also ask

How do you step to the end of line and change to writing mode in one step in Vi?

Just the $ (dollar sign) key. You can use A to move to the end of the line and switch to editing mode (Append).

How do I insert a line at the end of vim?

In normal mode press A (uppercase). Vim will be switched to insert mode, and the cursor will be moved to the end of the current line ready for input. IMO, this should be the accepted answer.


1 Answers

Apparently no, you need at least one line available for ex commands. You can disable the mode message and ruler if you like with:

:set nosmd   " short for 'showmode'
:set noru    " short for 'ruler'

But the line will still be there.

like image 196
sidyll Avatar answered Nov 07 '22 08:11

sidyll