Is there a way to programmatically write on the bar below vim windows? I’m referring to the bar which displays the filename, cursor row + column, and the percentage of the document above the bottom of the window.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is called the status line.
You can get more information by typing
:help statusline.This is the one I used which includes line and column at the bottom right.
The rendering is not ideal but the options, which are starting with the
%sign, are described from left to right as you go down. They are all described in help.This is a pretty static configuration, if you are willing to use a vim-plugin, there are some like vim-airline that provides more advanced features like git integration.