714
|
1 " Vim syntax file
|
|
2 " Language: R Help File
|
|
3 " Maintainer: Johannes Ranke <jranke@uni-bremen.de>
|
1621
|
4 " Last Change: 2008 Apr 10
|
|
5 " Version: 0.7.1
|
842
|
6 " SVN: $Id$
|
714
|
7 " Remarks: - Now includes R syntax highlighting in the appropriate
|
|
8 " sections if an r.vim file is in the same directory or in the
|
|
9 " default debian location.
|
|
10 " - There is no Latex markup in equations
|
|
11
|
|
12 " Version Clears: {{{1
|
|
13 " For version 5.x: Clear all syntax items
|
819
|
14 " For version 6.x and 7.x: Quit when a syntax file was already loaded
|
714
|
15 if version < 600
|
|
16 syntax clear
|
|
17 elseif exists("b:current_syntax")
|
|
18 finish
|
|
19 endif
|
|
20
|
|
21 syn case match
|
|
22
|
842
|
23 " R help identifiers {{{
|
714
|
24 syn region rhelpIdentifier matchgroup=rhelpSection start="\\name{" end="}"
|
|
25 syn region rhelpIdentifier matchgroup=rhelpSection start="\\alias{" end="}"
|
|
26 syn region rhelpIdentifier matchgroup=rhelpSection start="\\pkg{" end="}"
|
842
|
27 syn region rhelpIdentifier matchgroup=rhelpSection start="\\item{" end="}" contained contains=rhelpDots
|
714
|
28 syn region rhelpIdentifier matchgroup=rhelpSection start="\\method{" end=/}/ contained
|
|
29
|
|
30 " Highlighting of R code using an existing r.vim syntax file if available {{{1
|
827
|
31 syn include @R syntax/r.vim
|
842
|
32 syn match rhelpDots "\\dots" containedin=@R
|
714
|
33 syn region rhelpRcode matchgroup=Delimiter start="\\examples{" matchgroup=Delimiter transparent end=/}/ contains=@R,rhelpSection
|
842
|
34 syn region rhelpRcode matchgroup=Delimiter start="\\usage{" matchgroup=Delimiter transparent end=/}/ contains=@R,rhelpIdentifier,rhelpS4method
|
714
|
35 syn region rhelpRcode matchgroup=Delimiter start="\\synopsis{" matchgroup=Delimiter transparent end=/}/ contains=@R
|
|
36 syn region rhelpRcode matchgroup=Delimiter start="\\special{" matchgroup=Delimiter transparent end=/}/ contains=@R contained
|
819
|
37 syn region rhelpRcode matchgroup=Delimiter start="\\code{" matchgroup=Delimiter transparent end=/}/ contains=@R,rhelpLink contained
|
842
|
38 syn region rhelpS4method matchgroup=Delimiter start="\\S4method{.*}(" matchgroup=Delimiter transparent end=/)/ contains=@R,rhelpDots contained
|
714
|
39
|
|
40 " Strings {{{1
|
|
41 syn region rhelpString start=/"/ end=/"/
|
|
42
|
819
|
43 " Special characters ( \$ \& \% \# \{ \} \_) {{{1
|
714
|
44 syn match rhelpSpecialChar "\\[$&%#{}_]"
|
|
45
|
|
46 " Special Delimiters {{{1
|
|
47 syn match rhelpDelimiter "\\cr"
|
|
48 syn match rhelpDelimiter "\\tab "
|
|
49
|
|
50 " Keywords {{{1
|
|
51 syn match rhelpKeyword "\\R"
|
|
52 syn match rhelpKeyword "\\ldots"
|
842
|
53 syn match rhelpKeyword "--"
|
|
54 syn match rhelpKeyword "---"
|
|
55 syn match rhelpKeyword "<"
|
|
56 syn match rhelpKeyword ">"
|
714
|
57
|
|
58 " Links {{{1
|
|
59 syn region rhelpLink matchgroup=rhelpSection start="\\link{" end="}" contained keepend
|
|
60 syn region rhelpLink matchgroup=rhelpSection start="\\link\[.*\]{" end="}" contained keepend
|
842
|
61 syn region rhelpLink matchgroup=rhelpSection start="\\linkS4class{" end="}" contained keepend
|
714
|
62
|
|
63 " Type Styles {{{1
|
|
64 syn match rhelpType "\\emph\>"
|
|
65 syn match rhelpType "\\strong\>"
|
|
66 syn match rhelpType "\\bold\>"
|
|
67 syn match rhelpType "\\sQuote\>"
|
|
68 syn match rhelpType "\\dQuote\>"
|
|
69 syn match rhelpType "\\preformatted\>"
|
|
70 syn match rhelpType "\\kbd\>"
|
|
71 syn match rhelpType "\\samp\>"
|
|
72 syn match rhelpType "\\eqn\>"
|
|
73 syn match rhelpType "\\deqn\>"
|
|
74 syn match rhelpType "\\file\>"
|
|
75 syn match rhelpType "\\email\>"
|
|
76 syn match rhelpType "\\url\>"
|
|
77 syn match rhelpType "\\var\>"
|
|
78 syn match rhelpType "\\env\>"
|
|
79 syn match rhelpType "\\option\>"
|
|
80 syn match rhelpType "\\command\>"
|
|
81 syn match rhelpType "\\dfn\>"
|
|
82 syn match rhelpType "\\cite\>"
|
|
83 syn match rhelpType "\\acronym\>"
|
|
84
|
|
85 " rhelp sections {{{1
|
|
86 syn match rhelpSection "\\encoding\>"
|
|
87 syn match rhelpSection "\\title\>"
|
|
88 syn match rhelpSection "\\description\>"
|
|
89 syn match rhelpSection "\\concept\>"
|
|
90 syn match rhelpSection "\\arguments\>"
|
|
91 syn match rhelpSection "\\details\>"
|
|
92 syn match rhelpSection "\\value\>"
|
|
93 syn match rhelpSection "\\references\>"
|
|
94 syn match rhelpSection "\\note\>"
|
|
95 syn match rhelpSection "\\author\>"
|
|
96 syn match rhelpSection "\\seealso\>"
|
|
97 syn match rhelpSection "\\keyword\>"
|
|
98 syn match rhelpSection "\\docType\>"
|
|
99 syn match rhelpSection "\\format\>"
|
|
100 syn match rhelpSection "\\source\>"
|
|
101 syn match rhelpSection "\\itemize\>"
|
|
102 syn match rhelpSection "\\describe\>"
|
|
103 syn match rhelpSection "\\enumerate\>"
|
|
104 syn match rhelpSection "\\item "
|
|
105 syn match rhelpSection "\\item$"
|
|
106 syn match rhelpSection "\\tabular{[lcr]*}"
|
|
107 syn match rhelpSection "\\dontrun\>"
|
|
108 syn match rhelpSection "\\dontshow\>"
|
|
109 syn match rhelpSection "\\testonly\>"
|
1621
|
110 syn match rhelpSection "\\donttest\>"
|
714
|
111
|
|
112 " Freely named Sections {{{1
|
|
113 syn region rhelpFreesec matchgroup=Delimiter start="\\section{" matchgroup=Delimiter transparent end=/}/
|
|
114
|
842
|
115 " R help file comments {{{1
|
714
|
116 syn match rhelpComment /%.*$/ contained
|
|
117
|
|
118 " Error {{{1
|
|
119 syn region rhelpRegion matchgroup=Delimiter start=/(/ matchgroup=Delimiter end=/)/ transparent contains=ALLBUT,rhelpError,rhelpBraceError,rhelpCurlyError
|
|
120 syn region rhelpRegion matchgroup=Delimiter start=/{/ matchgroup=Delimiter end=/}/ transparent contains=ALLBUT,rhelpError,rhelpBraceError,rhelpParenError
|
|
121 syn region rhelpRegion matchgroup=Delimiter start=/\[/ matchgroup=Delimiter end=/]/ transparent contains=ALLBUT,rhelpError,rhelpCurlyError,rhelpParenError
|
|
122 syn match rhelpError /[)\]}]/
|
|
123 syn match rhelpBraceError /[)}]/ contained
|
|
124 syn match rhelpCurlyError /[)\]]/ contained
|
|
125 syn match rhelpParenError /[\]}]/ contained
|
|
126
|
|
127 " Define the default highlighting {{{1
|
|
128 " For version 5.7 and earlier: only when not done already
|
|
129 " For version 5.8 and later: only when an item doesn't have highlighting yet
|
|
130 if version >= 508 || !exists("did_rhelp_syntax_inits")
|
|
131 if version < 508
|
|
132 let did_rhelp_syntax_inits = 1
|
|
133 command -nargs=+ HiLink hi link <args>
|
|
134 else
|
|
135 command -nargs=+ HiLink hi def link <args>
|
|
136 endif
|
|
137 HiLink rhelpIdentifier Identifier
|
|
138 HiLink rhelpString String
|
|
139 HiLink rhelpKeyword Keyword
|
842
|
140 HiLink rhelpDots Keyword
|
714
|
141 HiLink rhelpLink Underlined
|
842
|
142 HiLink rhelpType Type
|
714
|
143 HiLink rhelpSection PreCondit
|
|
144 HiLink rhelpError Error
|
|
145 HiLink rhelpBraceError Error
|
|
146 HiLink rhelpCurlyError Error
|
|
147 HiLink rhelpParenError Error
|
|
148 HiLink rhelpDelimiter Delimiter
|
|
149 HiLink rhelpComment Comment
|
|
150 HiLink rhelpRComment Comment
|
|
151 HiLink rhelpSpecialChar SpecialChar
|
|
152 delcommand HiLink
|
|
153 endif
|
|
154
|
|
155 let b:current_syntax = "rhelp"
|
|
156 " vim: foldmethod=marker:
|