syntax: FunctionParameters: Don't include the parentheses in the match

Fixes problem with Rainbow parentheses
This commit is contained in:
nfnty
2017-02-16 23:00:13 +01:00
parent b9b0a787cf
commit 3c615fb1c7

View File

@@ -98,7 +98,7 @@ else
syn match pythonStatement '\<async\s\+for\>'
endif
syn region FunctionParameters start='(' end=')' display contains=
syn region FunctionParameters start='(\zs' end='\ze)' display contains=
\ FunctionParameters,
\ OptionalParameters,
\ pythonRepeat,