6

If I open MacVim (specifically janus) and try :open ~/<TAB> I get :open ~/^I. How can I get it to tab complete the way one would expect bash completion to work?

aresnick
  • 1,635
  • 12
  • 24
  • 3
    `:open` is not the command for opening files; it is a residual command left over from the original *ex* where it invoked a single-line “visual” mode. – Chris Johnsen Feb 07 '12 at 03:41

1 Answers1

11

You can use :

:e ~/<TAB>

:set wildmenu would also be very helpful.

kev
  • 155,172
  • 47
  • 273
  • 272