python.vim 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. " Vim syntax file
  2. " Language: Python
  3. " Maintainer: Neil Schemenauer <nas@python.ca>
  4. " Last Change: 2014 Jul 16
  5. " Credits: Zvezdan Petkovic <zpetkovic@acm.org>
  6. " Neil Schemenauer <nas@python.ca>
  7. " Dmitry Vasiliev
  8. "
  9. " This version is a major rewrite by Zvezdan Petkovic.
  10. "
  11. " - introduced highlighting of doctests
  12. " - updated keywords, built-ins, and exceptions
  13. " - corrected regular expressions for
  14. "
  15. " * functions
  16. " * decorators
  17. " * strings
  18. " * escapes
  19. " * numbers
  20. " * space error
  21. "
  22. " - corrected synchronization
  23. " - more highlighting is ON by default, except
  24. " - space error highlighting is OFF by default
  25. "
  26. " Optional highlighting can be controlled using these variables.
  27. "
  28. " let python_no_builtin_highlight = 1
  29. " let python_no_doctest_code_highlight = 1
  30. " let python_no_doctest_highlight = 1
  31. " let python_no_exception_highlight = 1
  32. " let python_no_number_highlight = 1
  33. " let python_space_error_highlight = 1
  34. "
  35. " All the options above can be switched on together.
  36. "
  37. " let python_highlight_all = 1
  38. "
  39. " For version 5.x: Clear all syntax items.
  40. " For version 6.x: Quit when a syntax file was already loaded.
  41. if version < 600
  42. syntax clear
  43. elseif exists("b:current_syntax")
  44. finish
  45. endif
  46. " We need nocompatible mode in order to continue lines with backslashes.
  47. " Original setting will be restored.
  48. let s:cpo_save = &cpo
  49. set cpo&vim
  50. " Keep Python keywords in alphabetical order inside groups for easy
  51. " comparison with the table in the 'Python Language Reference'
  52. " http://docs.python.org/reference/lexical_analysis.html#keywords.
  53. " Groups are in the order presented in NAMING CONVENTIONS in syntax.txt.
  54. " Exceptions come last at the end of each group (class and def below).
  55. "
  56. " Keywords 'with' and 'as' are new in Python 2.6
  57. " (use 'from __future__ import with_statement' in Python 2.5).
  58. "
  59. " Some compromises had to be made to support both Python 3.0 and 2.6.
  60. " We include Python 3.0 features, but when a definition is duplicated,
  61. " the last definition takes precedence.
  62. "
  63. " - 'False', 'None', and 'True' are keywords in Python 3.0 but they are
  64. " built-ins in 2.6 and will be highlighted as built-ins below.
  65. " - 'exec' is a built-in in Python 3.0 and will be highlighted as
  66. " built-in below.
  67. " - 'nonlocal' is a keyword in Python 3.0 and will be highlighted.
  68. " - 'print' is a built-in in Python 3.0 and will be highlighted as
  69. " built-in below (use 'from __future__ import print_function' in 2.6)
  70. "
  71. syn keyword pythonStatement False, None, True
  72. syn keyword pythonStatement as assert break continue del exec global
  73. syn keyword pythonStatement lambda nonlocal pass print return with yield
  74. syn keyword pythonStatement class def nextgroup=pythonFunction skipwhite
  75. syn keyword pythonConditional elif else if
  76. syn keyword pythonRepeat for while
  77. syn keyword pythonOperator and in is not or
  78. syn keyword pythonException except finally raise try
  79. syn keyword pythonInclude from import
  80. " Decorators (new in Python 2.4)
  81. syn match pythonDecorator "@" display nextgroup=pythonFunction skipwhite
  82. " The zero-length non-grouping match before the function name is
  83. " extremely important in pythonFunction. Without it, everything is
  84. " interpreted as a function inside the contained environment of
  85. " doctests.
  86. " A dot must be allowed because of @MyClass.myfunc decorators.
  87. syn match pythonFunction
  88. \ "\%(\%(def\s\|class\s\|@\)\s*\)\@<=\h\%(\w\|\.\)*" contained
  89. syn match pythonComment "#.*$" contains=pythonTodo,@Spell
  90. syn keyword pythonTodo FIXME NOTE NOTES TODO XXX contained
  91. " Triple-quoted strings can contain doctests.
  92. syn region pythonString
  93. \ start=+[uU]\=\z(['"]\)+ end="\z1" skip="\\\\\|\\\z1"
  94. \ contains=pythonEscape,@Spell
  95. syn region pythonString
  96. \ start=+[uU]\=\z('''\|"""\)+ end="\z1" keepend
  97. \ contains=pythonEscape,pythonSpaceError,pythonDoctest,@Spell
  98. syn region pythonRawString
  99. \ start=+[uU]\=[rR]\z(['"]\)+ end="\z1" skip="\\\\\|\\\z1"
  100. \ contains=@Spell
  101. syn region pythonRawString
  102. \ start=+[uU]\=[rR]\z('''\|"""\)+ end="\z1" keepend
  103. \ contains=pythonSpaceError,pythonDoctest,@Spell
  104. syn match pythonEscape +\\[abfnrtv'"\\]+ contained
  105. syn match pythonEscape "\\\o\{1,3}" contained
  106. syn match pythonEscape "\\x\x\{2}" contained
  107. syn match pythonEscape "\%(\\u\x\{4}\|\\U\x\{8}\)" contained
  108. " Python allows case-insensitive Unicode IDs: http://www.unicode.org/charts/
  109. syn match pythonEscape "\\N{.\{-}}" contained
  110. syn match pythonEscape "\\$"
  111. if exists("python_highlight_all")
  112. if exists("python_no_builtin_highlight")
  113. unlet python_no_builtin_highlight
  114. endif
  115. if exists("python_no_doctest_code_highlight")
  116. unlet python_no_doctest_code_highlight
  117. endif
  118. if exists("python_no_doctest_highlight")
  119. unlet python_no_doctest_highlight
  120. endif
  121. if exists("python_no_exception_highlight")
  122. unlet python_no_exception_highlight
  123. endif
  124. if exists("python_no_number_highlight")
  125. unlet python_no_number_highlight
  126. endif
  127. let python_space_error_highlight = 1
  128. endif
  129. " It is very important to understand all details before changing the
  130. " regular expressions below or their order.
  131. " The word boundaries are *not* the floating-point number boundaries
  132. " because of a possible leading or trailing decimal point.
  133. " The expressions below ensure that all valid number literals are
  134. " highlighted, and invalid number literals are not. For example,
  135. "
  136. " - a decimal point in '4.' at the end of a line is highlighted,
  137. " - a second dot in 1.0.0 is not highlighted,
  138. " - 08 is not highlighted,
  139. " - 08e0 or 08j are highlighted,
  140. "
  141. " and so on, as specified in the 'Python Language Reference'.
  142. " http://docs.python.org/reference/lexical_analysis.html#numeric-literals
  143. if !exists("python_no_number_highlight")
  144. " numbers (including longs and complex)
  145. syn match pythonNumber "\<0[oO]\=\o\+[Ll]\=\>"
  146. syn match pythonNumber "\<0[xX]\x\+[Ll]\=\>"
  147. syn match pythonNumber "\<0[bB][01]\+[Ll]\=\>"
  148. syn match pythonNumber "\<\%([1-9]\d*\|0\)[Ll]\=\>"
  149. syn match pythonNumber "\<\d\+[jJ]\>"
  150. syn match pythonNumber "\<\d\+[eE][+-]\=\d\+[jJ]\=\>"
  151. syn match pythonNumber
  152. \ "\<\d\+\.\%([eE][+-]\=\d\+\)\=[jJ]\=\%(\W\|$\)\@="
  153. syn match pythonNumber
  154. \ "\%(^\|\W\)\@<=\d*\.\d\+\%([eE][+-]\=\d\+\)\=[jJ]\=\>"
  155. endif
  156. " Group the built-ins in the order in the 'Python Library Reference' for
  157. " easier comparison.
  158. " http://docs.python.org/library/constants.html
  159. " http://docs.python.org/library/functions.html
  160. " http://docs.python.org/library/functions.html#non-essential-built-in-functions
  161. " Python built-in functions are in alphabetical order.
  162. if !exists("python_no_builtin_highlight")
  163. " built-in constants
  164. " 'False', 'True', and 'None' are also reserved words in Python 3.0
  165. syn keyword pythonBuiltin False True None
  166. syn keyword pythonBuiltin NotImplemented Ellipsis __debug__
  167. " built-in functions
  168. syn keyword pythonBuiltin abs all any bin bool chr classmethod
  169. syn keyword pythonBuiltin compile complex delattr dict dir divmod
  170. syn keyword pythonBuiltin enumerate eval filter float format
  171. syn keyword pythonBuiltin frozenset getattr globals hasattr hash
  172. syn keyword pythonBuiltin help hex id input int isinstance
  173. syn keyword pythonBuiltin issubclass iter len list locals map max
  174. syn keyword pythonBuiltin min next object oct open ord pow print
  175. syn keyword pythonBuiltin property range repr reversed round set
  176. syn keyword pythonBuiltin setattr slice sorted staticmethod str
  177. syn keyword pythonBuiltin sum super tuple type vars zip __import__
  178. " Python 2.6 only
  179. syn keyword pythonBuiltin basestring callable cmp execfile file
  180. syn keyword pythonBuiltin long raw_input reduce reload unichr
  181. syn keyword pythonBuiltin unicode xrange
  182. " Python 3.0 only
  183. syn keyword pythonBuiltin ascii bytearray bytes exec memoryview
  184. " non-essential built-in functions; Python 2.6 only
  185. syn keyword pythonBuiltin apply buffer coerce intern
  186. endif
  187. " From the 'Python Library Reference' class hierarchy at the bottom.
  188. " http://docs.python.org/library/exceptions.html
  189. if !exists("python_no_exception_highlight")
  190. " builtin base exceptions (only used as base classes for other exceptions)
  191. syn keyword pythonExceptions BaseException Exception
  192. syn keyword pythonExceptions ArithmeticError EnvironmentError
  193. syn keyword pythonExceptions LookupError
  194. " builtin base exception removed in Python 3.0
  195. syn keyword pythonExceptions StandardError
  196. " builtin exceptions (actually raised)
  197. syn keyword pythonExceptions AssertionError AttributeError BufferError
  198. syn keyword pythonExceptions EOFError FloatingPointError GeneratorExit
  199. syn keyword pythonExceptions IOError ImportError IndentationError
  200. syn keyword pythonExceptions IndexError KeyError KeyboardInterrupt
  201. syn keyword pythonExceptions MemoryError NameError NotImplementedError
  202. syn keyword pythonExceptions OSError OverflowError ReferenceError
  203. syn keyword pythonExceptions RuntimeError StopIteration SyntaxError
  204. syn keyword pythonExceptions SystemError SystemExit TabError TypeError
  205. syn keyword pythonExceptions UnboundLocalError UnicodeError
  206. syn keyword pythonExceptions UnicodeDecodeError UnicodeEncodeError
  207. syn keyword pythonExceptions UnicodeTranslateError ValueError VMSError
  208. syn keyword pythonExceptions WindowsError ZeroDivisionError
  209. " builtin warnings
  210. syn keyword pythonExceptions BytesWarning DeprecationWarning FutureWarning
  211. syn keyword pythonExceptions ImportWarning PendingDeprecationWarning
  212. syn keyword pythonExceptions RuntimeWarning SyntaxWarning UnicodeWarning
  213. syn keyword pythonExceptions UserWarning Warning
  214. endif
  215. if exists("python_space_error_highlight")
  216. " trailing whitespace
  217. syn match pythonSpaceError display excludenl "\s\+$"
  218. " mixed tabs and spaces
  219. syn match pythonSpaceError display " \+\t"
  220. syn match pythonSpaceError display "\t\+ "
  221. endif
  222. " Do not spell doctests inside strings.
  223. " Notice that the end of a string, either ''', or """, will end the contained
  224. " doctest too. Thus, we do *not* need to have it as an end pattern.
  225. if !exists("python_no_doctest_highlight")
  226. if !exists("python_no_doctest_code_highlight")
  227. syn region pythonDoctest
  228. \ start="^\s*>>>\s" end="^\s*$"
  229. \ contained contains=ALLBUT,pythonDoctest,@Spell
  230. syn region pythonDoctestValue
  231. \ start=+^\s*\%(>>>\s\|\.\.\.\s\|"""\|'''\)\@!\S\++ end="$"
  232. \ contained
  233. else
  234. syn region pythonDoctest
  235. \ start="^\s*>>>" end="^\s*$"
  236. \ contained contains=@NoSpell
  237. endif
  238. endif
  239. " Sync at the beginning of class, function, or method definition.
  240. syn sync match pythonSync grouphere NONE "^\s*\%(def\|class\)\s\+\h\w*\s*("
  241. if version >= 508 || !exists("did_python_syn_inits")
  242. if version <= 508
  243. let did_python_syn_inits = 1
  244. command -nargs=+ HiLink hi link <args>
  245. else
  246. command -nargs=+ HiLink hi def link <args>
  247. endif
  248. " The default highlight links. Can be overridden later.
  249. HiLink pythonStatement Statement
  250. HiLink pythonConditional Conditional
  251. HiLink pythonRepeat Repeat
  252. HiLink pythonOperator Operator
  253. HiLink pythonException Exception
  254. HiLink pythonInclude Include
  255. HiLink pythonDecorator Define
  256. HiLink pythonFunction Function
  257. HiLink pythonComment Comment
  258. HiLink pythonTodo Todo
  259. HiLink pythonString String
  260. HiLink pythonRawString String
  261. HiLink pythonEscape Special
  262. if !exists("python_no_number_highlight")
  263. HiLink pythonNumber Number
  264. endif
  265. if !exists("python_no_builtin_highlight")
  266. HiLink pythonBuiltin Function
  267. endif
  268. if !exists("python_no_exception_highlight")
  269. HiLink pythonExceptions Structure
  270. endif
  271. if exists("python_space_error_highlight")
  272. HiLink pythonSpaceError Error
  273. endif
  274. if !exists("python_no_doctest_highlight")
  275. HiLink pythonDoctest Special
  276. HiLink pythonDoctestValue Define
  277. endif
  278. delcommand HiLink
  279. endif
  280. let b:current_syntax = "python"
  281. let &cpo = s:cpo_save
  282. unlet s:cpo_save
  283. " vim:set sw=2 sts=2 ts=8 noet: