Skip to content

Releases: Raku/atom-language

v1.11.1

19 Dec 02:12
v1.11.1
dd454bf
Compare
Choose a tag to compare

v1.11.1

  • Fix problem where the recently added feature so routines and methods can
    highlight inside interpolated strings would cause it to overrun the length of
    the string if there were parenthesis later on in the line. Fixes Issue #20

v1.11.0

18 Dec 06:07
v1.11.0
77b3df6
Compare
Choose a tag to compare

v1.11.0

Pod

  • Highlight X< > tags. Fixes Issue #17
  • Add support for C<< >>, C<<< >>> and C« » delimiters for all types of tags.
    Fixes Issue #18
  • Nested tags now highlight.
  • Tags can now span multiple lines. Fixes Issue #14

Misc

  • Fix q/qq/Q quoting not highlighting when surrounded by brackets.
  • Highlight <<< >>> delimiters for q/qq/Q quoting.
  • Highlight « » delimiters for q/qq/Q quoting.
  • Add #«and#<<< delimiters for multiline comments.

v1.10.0

18 Dec 00:02
v1.10.0
25ee9ff
Compare
Choose a tag to compare

v1.10.0

  • Method calls and routine calls in interpolated strings now highlight.
    Example: "$var.method()" Fixes Issue #13
  • Angle bracket word quoting across multiple lines works again. It will
    only allow multi-line quoting this way if the opening angle bracket is after
    an = sign.
  • Allow non-word characters like - and ' to be in token, rule and regex
    names for grammars.
  • Highlight :sym< > for protoregex action method's. Fixes Issue #12
  • Highlight pod =head sections as headings not comments when they continue onto
    the next line. Fixes Issue #16
  • Make sure fonts with ligatures like Fira Code don't use ligatures in comments,
    or quoted strings.

v1.9.11

18 Dec 00:03
196a9c3
Compare
Choose a tag to compare

v1.9.11

  • Highlight unicode hex codes in regex character classes. Fixes Issue #10
  • Highlight regex named capture variables in quoted strings. Fixes Issue #9
  • Fix a bug that could cause angle bracket word quoting to be triggered by
    the less-than operator (<).
  • Add .so and .not methods.

v1.9.10

18 Dec 00:03
6316809
Compare
Choose a tag to compare

v1.9.10

  • Fix link on the readme

v1.9.9

18 Dec 00:04
b8f0c26
Compare
Choose a tag to compare

v1.9.9

  • Keys of pairs now highlight properly if no spaces used for unquoted keys.
    Fixes Issue #4
  • Fix angle bracket delimited word array's not highlighting properly with a }
    immidiately before the closing angle bracket. Fixes Issue #2
  • Detect files that have =comment as the first line as Perl 6. You will
    probably need to disable Atom's built in Perl Grammar to get this to work
    though…

v1.9.8

19 Dec 02:14
66f004b
Compare
Choose a tag to compare

v1.9.8

  • Fix highlighting of fully qualified method names. Fixes #8

v1.9.6

19 Dec 02:15
2081f8c
Compare
Choose a tag to compare

v1.9.6

  • Fix highlighting of private methods. Example: method !priv-method. Issue #7
  • Fix q[] quoting constructs not quoting when there were surounded by
    parentheses.