]> git.r.bdr.sh - rbdr/api-notation.vim/commitdiff
Adds support for comments with //
authorBen Beltran <redacted>
Fri, 3 Jul 2015 17:14:52 +0000 (12:14 -0500)
committerBen Beltran <redacted>
Fri, 3 Jul 2015 17:14:52 +0000 (12:14 -0500)
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