syntax/eo: add support for single-line comments (//)

This commit is contained in:
Jean Guyomarc'h 2016-03-16 23:01:56 +01:00
parent 538d4b0e54
commit d5c23f4601
1 changed files with 1 additions and 0 deletions

View File

@ -39,6 +39,7 @@ syn region eoBlock start="{" end="}" transparent fold
syn region eo_comment start="\/\*" end="\*\/" contains=@eoCommentGroup
syn region eo_comment start="\[\[" end="\]\]" contains=@eoCommentGroup
syn region eo_comment start="//" skip="\\$" end="$" keepend contains=@eoCommentGroup
" Numbers
"integer number, or floating point number without a dot and with "f".