]> git.r.bdr.sh - rbdr/api-notation.vim/blobdiff - syntax/api-notation.vim
Adds support for comments with //
[rbdr/api-notation.vim] / syntax / api-notation.vim
index 13ed776f4fbb3125182782eae481cfe047a2af8e..39a14375edb7489eb17a3d21673f5905238853aa 100644 (file)
@@ -9,6 +9,8 @@ endif
 
 syn match moduleName '^[a-zA-Z0-9_.]\+\s*' nextgroup=dataType
 
+syn match comment '\s*//\s*.*'
+
 syn match classMembers '^\s\+\(\(<+\)\|\(<\~\)\|\(<-\)\|\(+>\)\|\(\~>\)\|\(->\)\|-\|+\|\(::\)\|#\)' nextgroup=memberName skipwhite
 syn match internalOperators '\(\(<+\)\|\(<\~\)\|\(<-\)\|\(+>\)\|\(\~>\)\|\(->\)\|-\|+\|\(::\)\|#\)' contained nextgroup=memberName skipwhite
 syn match returnIdentifiers '\(=>\)' nextgroup=returnValue
@@ -42,3 +44,4 @@ hi def link optionalParameters Underlined
 hi def link dataTypes Constant
 
 hi def link separators Comment
+hi def link comment Comment