Skip to content

Commit

Permalink
fixup comments a little bit
Browse files Browse the repository at this point in the history
  • Loading branch information
ksherlock committed Sep 8, 2018
1 parent 32a310f commit 203aa85
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions Syntaxes/mumps.sublime-syntax
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ contexts:
- match: '^{{ident}}\b'
scope: entity.name.function.mumps

- include: comments
- match: '{{ws}}+'
set: indent

Expand Down Expand Up @@ -193,13 +192,21 @@ contexts:

eol:
- match: ';.*$'
scope: comment.line
set: main
scope: punctuation.definition.comment.mumps
push:
- meta_include_prototype: false
- meta_scope: comment.line.mumps
- match: '\n'
pop: true
- match: '$'
set: main


comment:
- match: ';.*$'
scope: comment.line

- match: ';'
scope: punctuation.definition.comment.mumps
push:
- meta_include_prototype: false
- meta_scope: comment.line.mumps
- match: '$'
pop: true

0 comments on commit 203aa85

Please sign in to comment.