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.

I played with some vim scripting yesterday and managed to get some over-the-status-bar prediction to whatever I'm typing at the moment, with cycling - see screenshot (gray + yellow bar).

Problem is, I can't remember how I got that or find the code snippet I used for that vim magic (I remember it being quite simple): it was either an example in the docs or something I picked up in the vim wiki. So, I'm trying to retrace my steps - any clue on what vimscript function/s to look up for these? I realize this is an odd question, but any clues will be great - thanks.

enter image description here

share|improve this question

1 Answer

up vote 14 down vote accepted

This is done with

:set wildmenu

When you press <Tab> while typing in the command line, completion options will appear above.

share|improve this answer
you, sir, are correct. Thanks! – sa125 Aug 9 '11 at 16:02
Nice! Never knew about this. Added to my vimrc =) – Costa Aug 9 '11 at 16:39
1  
Great way to discover commands. – bhinesley Aug 9 '11 at 16:53

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.