-
Notifications
You must be signed in to change notification settings - Fork 0
/
.ctags
43 lines (34 loc) · 1 KB
/
.ctags
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# docs here: http://ctags.sourceforge.net/ctags.html
--recurse=yes
--exclude=.git
--exclude=log/*
# ignore most boring files
--exclude=*.json
--exclude=*.html
--exclude=*.htm
--exclude=*.css
--exclude=*.scss
#--Python-kinds=-i
# Include interface info
--fields=+iaS
# "Include an extra class-qualified tag entry for each tag"
# Breaks out class members into seperate tags; doubles tag file size
# Useful?
--extras=+q
# Disable all JSON kinds
--JSON-kinds=
# universal-ctags handles css now automatically?
#--langdef=css
#--langmap=css:.css
#--regex-css=/^[ \t]*([^\t {][^{]{1,100})(\t| )*{/\1/d,definition/
# Don't think I really need scss support
#--langdef=scss
#--langmap=scss:.scss
#--regex-scss=/^[ \t]*([^\t {][^{]{1,100})(\t| )*{/| \1/d,definition/
--langdef=markdown
--langmap=markdown:.mkd
--regex-markdown=/^#[ \t]+(.*)/\1/h,Heading_L1/
--regex-markdown=/^##[ \t]+(.*)/\1/i,Heading_L2/
--regex-markdown=/^###[ \t]+(.*)/\1/k,Heading_L3/
# Only needed for old ctags?
#--regex-make=/^([^# \t]*):/\1/t,target/