How to programmatically create/update a TAGS file with emacs?

后端 未结 7 1095
我在风中等你
我在风中等你 2021-01-31 11:20

Is there any plugin for emacs to automatically update the TAGS file in my C project (for example on buffer save or access) or create a new one if there is no TAGS file present?

7条回答
  •  醉话见心
    2021-01-31 11:30

    Why not add an execution of ctags to your build script? You really only need a new tags file when you compile (at the most). I tend to just write a scheduled task to build the tags file every night. Seems to work pretty well.

提交回复
热议问题