File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -135,12 +135,14 @@ syn match pythonDot '\.' display containedin=pythonDottedName
135
135
" Comments
136
136
"
137
137
138
- syn match pythonComment ' #.*$' display contains =pythonTodo,@Spell
138
+ syn match pythonComment ' #.*$' display contains =pythonTodo,pythonFixme,pythonXXX, @Spell
139
139
if ! s: Enabled (' g:python_highlight_file_headers_as_comments' )
140
140
syn match pythonRun ' \% ^#!.*$'
141
141
syn match pythonCoding ' \% ^.*\% (\n .*\)\? #.*coding[:=]\s *[0-9A-Za-z-_.]\+ .*$'
142
142
endif
143
- syn keyword pythonTodo TODO FIXME XXX contained
143
+ syn keyword pythonTodo TODO contained
144
+ syn keyword pythonFixme FIXME contained
145
+ syn keyword pythonXXX XXX contained
144
146
145
147
"
146
148
" Errors
@@ -449,6 +451,8 @@ if v:version >= 508 || !exists('did_python_syn_inits')
449
451
HiLink pythonRun Special
450
452
endif
451
453
HiLink pythonTodo Todo
454
+ HiLink pythonFixme Todo
455
+ HiLink pythonXXX Todo
452
456
453
457
HiLink pythonError Error
454
458
HiLink pythonIndentError Error
You can’t perform that action at this time.
0 commit comments