Shortcut to open file in Vim

前端 未结 19 1042
误落风尘
误落风尘 2020-12-22 16:30

I want to open a file in Vim like in Eclipse using Ctrl + Shift + R, or via the Ctrl + N option of autofill. Invoke a

19条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-22 17:07

    • you can use (set wildmenu)
    • you can use tab to autocomplete filenames
    • you can also use matching, for example :e p*.dat or something like that (like in old' dos)
    • you could also :browse confirm e (for a graphical window)

    • but you should also probably specify what vim version you're using, and how that thing in emacs works. Maybe we could find you an exact vim alternative.

提交回复
热议问题