10

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

sa125
  • 28,121
  • 38
  • 111
  • 153

1 Answers1

16

This is done with

:set wildmenu

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

Michael Berkowski
  • 267,341
  • 46
  • 444
  • 390