From d50939e3619bf0e8783a46e81bff3d472dd6385c Mon Sep 17 00:00:00 2001 From: Jerome Leclanche Date: Sat, 8 Aug 2015 10:30:59 +0200 Subject: runtime: `::` token is valid in C#. #3144 https://msdn.microsoft.com/en-us/library/c3ay4x3d.aspx --- runtime/syntax/cs.vim | 2 -- 1 file changed, 2 deletions(-) (limited to 'runtime/syntax') diff --git a/runtime/syntax/cs.vim b/runtime/syntax/cs.vim index 2ba629f921..0443a1ff3d 100644 --- a/runtime/syntax/cs.vim +++ b/runtime/syntax/cs.vim @@ -25,8 +25,6 @@ syn keyword csStorage class delegate enum interface namespace struct syn keyword csRepeat break continue do for foreach goto return while syn keyword csConditional else if switch syn keyword csLabel case default -" there's no :: operator in C# -syn match csOperatorError display +::+ " user labels (see [1] 8.6 Statements) syn match csLabel display +^\s*\I\i*\s*:\([^:]\)\@=+ " modifier -- cgit