aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/cs.vim
diff options
context:
space:
mode:
authorJerome Leclanche <jerome@leclan.ch>2015-08-08 10:30:59 +0200
committerJustin M. Keyes <justinkz@gmail.com>2015-08-31 02:58:00 -0400
commitd50939e3619bf0e8783a46e81bff3d472dd6385c (patch)
tree572581e4c063a4c7b234f819e69fa4b586176c50 /runtime/syntax/cs.vim
parent6e233b93ea03c67b80658a964d9a1a134792a9bd (diff)
downloadrneovim-d50939e3619bf0e8783a46e81bff3d472dd6385c.tar.gz
rneovim-d50939e3619bf0e8783a46e81bff3d472dd6385c.tar.bz2
rneovim-d50939e3619bf0e8783a46e81bff3d472dd6385c.zip
runtime: `::` token is valid in C#. #3144
https://msdn.microsoft.com/en-us/library/c3ay4x3d.aspx
Diffstat (limited to 'runtime/syntax/cs.vim')
-rw-r--r--runtime/syntax/cs.vim2
1 files changed, 0 insertions, 2 deletions
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