Shortcut to open file in Vim

前端 未结 19 1060
误落风尘
误落风尘 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:09

    I know three plugins that permit to open files, support auto-completion, and don't require to enter the full path name of the file(s) to open (as long as the files are under one of the directories from &path vim option):

    • searchInRuntime that I'm maintaining (the completion is not on :e/:find, but on split actions)
    • fuzzy finder as it has been already pointed out,
    • lookupfile.

    Lately, I've seen another plugin with a similar feature, but I don't remember the name.

    Soon, :find is likely support auto-completion -- patches on this topic are circulating on vim_dev mailing-list these days.

提交回复
热议问题