I would like to change the vim status line which is shown while vim is busy executing an external command. I have a vim script which pipes lines of text from vim into some external program using "!". After execution vim waits for the output of the command to replace the lines with it. While it is waiting I would like to show the status of the external command in the statusline. Is this possible?
|
|
|
I would solve this using a temporary global variable. Here is a simple function that returns the value of a variable
You can set the statusline to use the return value of this function like this:
Then, when you call the slow external command, just set the temporary variable beforehand (using the message you want to be displayed), and
Note that the EDIT Of course it would be much simpler to display the message by echoing it and clearing the display afterwards, like this:
This way the message will be displayed on the Vim command line, rather than in the statusline. You don't need any of the functions defined above. |
|||||||||
|