Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions syntax/cs.vim
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ syn keyword csUnsupportedStatement add remove value
" TODO:
syn keyword csUnspecifiedKeyword explicit implicit

syn keyword csTypeOf typeof nextgroup=csEnclosed

" Linq Keywords
syn keyword csLinq from where select group into orderby join let in on equals by ascending descending

Expand All @@ -65,8 +63,8 @@ syn keyword csNewDecleration new nextgroup=csClass skipwhite
syn match csClass contained /\<[A-Z][a-z]\w\+/ nextgroup=csGeneric
syn match csIface contained /\<I[A-Z][a-z]\w\+/ nextgroup=csGeneric
" syn region csGeneric start="<" end=">" contains=csIface,csClass
syn region csEnclosed start="(" end=")" contains=csConstant,csType,csString, csVerbatimString, csCharacter, csNumber,csIface,csClass,csNewDecleration,csUnspecifiedStatement,csLinq
"syn region csInherits start=":" end="{" contains=csIface,csClass
syn region csTypeOf start="typeof(" end=")" contains=csIface,csClass

" Attributes
syn region csAttribute start="^\s*\[" end="\]\s*" contains=csString, csVerbatimString, csCharacter, csNumber, csType
Expand Down