We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6890a36 commit ee2a336Copy full SHA for ee2a336
1 file changed
syntax/python.vim
@@ -59,6 +59,14 @@ if s:Enabled('g:python_highlight_all')
59
call s:EnableByDefault('g:python_highlight_operators')
60
endif
61
62
+"
63
+" Function calls
64
65
+
66
+if s:Enabled('g:python_highlight_func_calls')
67
+ syn match pythonFunctionCall '\%([^[:cntrl:][:space:][:punct:][:digit:]]\|_\)\%([^[:cntrl:][:punct:][:space:]]\|_\)*\ze\%(\s*(\)'
68
+endif
69
70
"
71
" Keywords
72
@@ -395,14 +403,6 @@ if s:Enabled('g:python_highlight_exceptions')
395
403
unlet s:exs_re
396
404
397
405
398
-"
399
-" Function calls
400
401
-
402
-if s:Enabled('g:python_highlight_func_calls')
- syn match pythonFunctionCall '\%([^[:cntrl:][:space:][:punct:][:digit:]]\|_\)\%([^[:cntrl:][:punct:][:space:]]\|_\)*\ze\%(\s*(\)'
-endif
406
407
" Misc
408
0 commit comments