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

link|improve this question

72% accept rate
feedback

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.

link|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
feedback

Your Answer

 
or
required, but never shown

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