From 3ef357e3bacc3594b85fe5b1eb06277c0264717c Mon Sep 17 00:00:00 2001 From: Michael Doronin Date: Mon, 21 Nov 2016 16:04:13 +0300 Subject: [PATCH] keyword arguments highlighted inside of builtin object constructors --- syntax/python.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax/python.vim b/syntax/python.vim index e110516..469bd40 100644 --- a/syntax/python.vim +++ b/syntax/python.vim @@ -431,7 +431,7 @@ if s:Enabled("g:python_highlight_builtin_objs") syn keyword pythonBuiltinObj None syn keyword pythonBoolean True False syn keyword pythonBuiltinObj Ellipsis NotImplemented - syn match pythonBuiltinObj '\v(\.)@' + syn match pythonBuiltinObj '\v(\.)@' nextgroup=FunctionParameters syn keyword pythonBuiltinObj __debug__ __doc__ __file__ __name__ __package__ syn keyword pythonBuiltinObj __loader__ __spec__ __path__ __cached__ endif