Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to have a dynamic statusline which evaluates an external shell command? Specifically I want to read part of the line from a pipe.

I.e. some independent program writes status messages to a unix pipe (or say some conventional file). I want the vim to read this file and its status line to display the message whenever the file changes.

share|improve this question
please consider editing your posting to include an example of what you intend. Good luck. – shellter Mar 15 '12 at 13:26

1 Answer

up vote 0 down vote accepted

If you want to call date command in status line:

:set statusline=%{system('date')}

You can change date to your external command.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.