-
Notifications
You must be signed in to change notification settings - Fork 4
/
.ctags
52 lines (43 loc) · 1.72 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
44
45
46
47
48
49
50
51
52
--c-kinds=+p
--langmap=sh:+.bashrc
--langmap=sh:+.zshrc
--langmap=vim:+.vimperatorrc
--langmap=vim:+.pentadactylrc
--langdef=latex
--langmap=latex:.tex,latex:.sty
--regex-latex=/\\label\{([^}]*)\}/\1/l,label/
--regex-latex=/\\section\{([^}]*)\}/\1/s,section/
--regex-latex=/\\subsection\{([^}]*)\}/\1/t,subsection/
--regex-latex=/\\subsubsection\{([^}]*)\}/\1/u,subsubsection/
--regex-latex=/\\section\*\{([^}]*)\}/\1/s,section/
--regex-latex=/\\subsection\*\{([^}]*)\}/\1/t,subsection/
--regex-latex=/\\subsubsection\*\{([^}]*)\}/\1/u,subsubsection/
--regex-latex=/\\newcommand\{\\([^}]*)\}/\1/c,command/
--regex-latex=/\\DeclareRobustCommand\{\\([^}]*)\}/\1/c,command/
--regex-latex=/\\newenvironment\{([^}]*)\}/\1/e,environment/
--regex-latex=/\\begin\{definition\}\[([^]]*)\]/\1/d,definition/
--regex-vim=/^" = (.*) +=$/\1/h,heading/
--regex-vim=/^" - (.*) +-$/\1/s,subheading/
--regex-vim=/^" ~ (.*) +~$/\1/S,subsubheading/
--regex-sh=/^# = (.*) +=$/\1/h,heading/
--regex-sh=/^# - (.*) +-$/\1/s,subheading/
--regex-sh=/^# ~ (.*) +~$/\1/S,subsubheading/
--langdef=conf
--regex-conf=/^# = (.*) +=$/\1/h,heading/
--regex-conf=/^# - (.*) +-$/\1/s,subheading/
--regex-conf=/^# ~ (.*) +~$/\1/S,subsubheading/
--regex-vhdl=/^-- = (.*) +=$/\1/h,heading/
--regex-vhdl=/^-- - (.*) +-$/\1/s,subheading/
--regex-vhdl=/^-- ~ (.*) +~$/\1/S,subsubheading/
--langdef=markdown
--langmap=markdown:.md
--regex-markdown=/^#[ \t]+(.*)/\1/h,heading/
--regex-markdown=/^##[ \t]+(.*)/\1/h,heading2/
--regex-markdown=/^###[ \t]+(.*)/\1/h,heading3/
--regex-markdown=/^####[ \t]+(.*)/\1/h,heading4/
--langdef=asm68k
--langmap=asm68k:.x68
--regex-asm68k=/^([^ \t*:]+)/\1/l,label/
--langdef=rust
--langdef=rust:.rs
--regex-rust=/(^|[ \t])fn[ \t]+([a-zA-Z0-9_]+)/\2/f,function/