ctags - How to update c++ tags automatically in Atom -
i trying use atom editor opengl project. used ctags generate indexes local project, looking can automatically update indexes while coding. in case, if there isn't plug-in atom automatically updates indexes, there way load ctags libraries globally? can have autocompletion when type std:: without having local copy of tags in project
you can use symbol-gen
package generate ctags symbols file project (based on .ctags
option file).
you can install atom package manager by: apm install symbol-gen
.
also make sure symbols-view
package enabled by: apm enable symbols-view
.
then hit cmd-alt-g (on macos) generate tags file project.
Comments
Post a Comment