File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ This project adheres to [Semantic Versioning](http://semver.org).
6
6
[ Unpublished ] : ../../compare/v1.4.0...HEAD
7
7
8
8
9
+ [ Unpublished]
10
+ ------------------------------------------------------------------------
11
+ * __ Added:__ Comment highlighting for interpreter directives (hashbangs)
12
+
13
+
14
+
9
15
[ v1.4.0]
10
16
------------------------------------------------------------------------
11
17
** October 17th, 2019**
Original file line number Diff line number Diff line change @@ -33,7 +33,14 @@ firstLineMatch: """(?x)
33
33
(?=\\s|:|$)
34
34
)
35
35
"""
36
- patterns: [include: "#main"]
36
+ patterns: [{
37
+ # Interpreter directive
38
+ name: "comment.line.hashbang.emacs.lisp"
39
+ begin: "\\A(#!)"
40
+ end: "$"
41
+ beginCaptures:
42
+ 1: name: "punctuation.definition.comment.hashbang.emacs.lisp"
43
+ }, include: "#main"]
37
44
38
45
39
46
repository:
You can’t perform that action at this time.
0 commit comments