yongkangchen / atom-ctags

better autocomplete for atom, using ctags
https://atom.io/packages/atom-ctags
MIT License
87 stars 35 forks source link

Tag file locations #194

Closed b1scuit closed 7 years ago

b1scuit commented 7 years ago

At present this package is working exactly as intended for me, however, I find .tag files in my project root, which is normally a git repo so git is trying to add and commit up the tag files and I have to work around these when committing.

Would it be an idea to have a path setting where we can select the location of these files? It would be ideal to be able to put these in the vendor folder that is ignored.

screen shot 2017-08-11 at 08 43 15
theonedemon commented 7 years ago

Use git global settings gitexcludes cat ~/.gitexcludes

.ctags
.tags*
.tags_swap

cat ~/.gitconfig

[core]
    excludesfile = ~/.gitexcludes