Is it possible to have the statusline in Vim be updated so and so long after a given event?
And if so, how does one do that?
|
Is it possible to have the statusline in Vim be updated so and so long after a given event? And if so, how does one do that?
| |||
|
show 2 more comments
feedback
|
|
As others have already pointed out, using timed changes to the statusline is not possible at the moment. However, if you can pick a suitable event at which the status reverts to the default, then you might be in luck. For e.g., if your workflow is:
then you could use the Here's a small fun example that you can probably modify to your needs. The normal status line:
Statuschange on function call:
With the above definitions, every time I press Ctrlm, the statusline changes to the above. Now by setting an autocommand, we can revert it to the default whenever you enter insert mode.
Back to insert:
| |||||||||
feedback
|
:timeris yet to be implemented (but is on the todo list). Would you like to pick an event? – Johnsyweb Jun 2 '11 at 10:34