Shortcut to open file in Vim

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

    With Exuberant ctags, you can create tag files with file information:

    ctags --extra=+f -R *
    

    Then, open file from VIM with

    :tag filename
    

    You can also use to autocomplete file name.

提交回复
热议问题