dotfiles/config/ctags/universal.ctags (view raw)
| 1 | --recurse=yes |
| 2 | --totals=yes |
| 3 | --tag-relative=yes |
| 4 | |
| 5 | # qualifies MyStruct.MyMethod to MyMethod |
| 6 | --extras=+q |
| 7 | # full kind names, instead of single letters |
| 8 | --fields=-k+K |
| 9 | # inheritance/interfaces |
| 10 | --fields=+i |
| 11 | # language of the tag (for multi language codebases) |
| 12 | --fields=+l |
| 13 | # access modifiers (public/private) |
| 14 | --fields=+a |
| 15 | # line number |
| 16 | --fields=+n |
| 17 | |
| 18 | --languages=-markdown,json,yaml,iniconf |
| 19 | --sh-kinds=-h |
| 20 | --Go-kinds=-p |
| 21 | --Odin-kinds=-p |
| 22 | |
| 23 | --exclude=.nvim.lua |
| 24 | --exclude=Session.vim |
| 25 | --exclude=.git |
| 26 | --exclude=.jj |
| 27 | --exclude=.docker |
| 28 | --exclude=.tests |
| 29 | --exclude=elm-stuff |
| 30 | --exclude=dist |
| 31 | --exclude=_site |
| 32 | --exclude=build |
| 33 | --exclude=vendor |
| 34 | --exclude=target |
| 35 | --exclude=node_modules |
| 36 | --exclude=*.min.js |
| 37 | --exclude=*.pb.go |