Welcome to Vifm Q&A, where you can ask questions about Vifm usage. Registration is optional, anonymous posts are moderated. GitHub or Google logins are enabled.
0 votes
in vifm by

Is it possible to maximize precious screen real estate by hiding the command line until it is invoked?

There is really no point in having the command line visible at all times other than the fact that vim and other programs already do it.

1 Answer

0 votes
by
 
Best answer

Is it possible to maximize precious screen real estate by hiding the command line until it is invoked?

No, currently you can only hide status line (the one above command line) by disabling 'laststatus' option.

There is really no point in having the command line visible at all times other than the fact that vim and other programs already do it.

Well, this would be true if entering commands was the only purpose of that line, which is not actually the case as it also displays:

  • the ruler (this can be moved to status line);
  • number of selected files in Normal and Visual modes;
  • current mode (e.g. -- VISUAL --);
  • error and information messages.

So not showing it at all could make usage somewhat harder. Not showing it unless there is a message might be a better alternative, but in this case it will appear/disappear from time to time.

by

Can I display some information from the status line in the command line instead?

by

You can put output of set rulerformat to 'statusline', for other items there are no macros available at the moment.

...