Vim and ctags: tag filenames

后端 未结 4 1300
刺人心
刺人心 2021-02-12 23:34

Is it possible to have ctags generate tags for filenames as well? I would like to be able to jump to a file given a filename. :find seems to be awfully slow compare to tags...

4条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-12 23:54

    Try running ctags -R --extra=f .

    The --extra=f option tells ctags to:

    "Include an entry for the base file name of every source file (e.g. "example.c"), which addresses the first line of the file."

    When you open vim, you can the use :tag to jump to the first line of the file.

提交回复
热议问题