Releases: Raku/atom-language
Releases · Raku/atom-language
Final before refactor - corrected
Final before refactoring
Refactoring to update, including moving from coffeescript and cson to vanilla js and JSON. This release incorporates changes to October 2022, which involved renaming from perl6 to raku.
v1.13.4
- Fix README.md's instructions on how to override the built in Perl highlighter.
The previous instructions were not accurate and did not properly work.
- Add quoting/commenting using the S-shaped bag delimiter
⟅ ⟆
.
- Add highlighting for
mkdir
routine/method.
v1.13.3
- Allow angle bracket multi-line quoting directly after the
for
keyword. Fixes Issue #37
v1.13.2
- Add support for highlighting of the assignment operator
:=
- Highlight the
throws
method/routine.
v1.13.1
- Add
ords
routine and method. [fb6d26b]
- Fix highlighting breaking when using
/
with another /
on the line. [a91eeef]
Fixes Issue #34
- add q/qq/Q:nfkc and q/qq/Q:nfkd quoting. It is not yet implemented in Rakudo
but it is in roast (NFK-types.t). [02db872][26aecbe]
- Tag
TOP
in grammars differently for docs.perl6.org. [e6c8c77]
v1.12.0
- Fix a problem with
multi sub
not highlighting the sub's name properly. Fixes Issue #26
- Make sure that q/qq/Q quoting works when there is a bracket before the q/qq/Q and no space.
- Regular expressions using
m
or rx
now allow arbitrary delimiters.
v1.11.4
- Add preliminary support for
s///
and S///
.
v1.11.3
- Fix a problem where a capture marker inside regex was recognized as a grouping
parenthesis, and could overrun the regex if there was another paren on the same
line. Fixes Issue #24
v1.11.2
v1.11.2
- Fix Issue #21:
- Fix − (U+2212 minus) and + in front of numbers or hex numbers.
- Fix hex numbers not highlighting when at start of line.
- Fix hex numbers not highlighting when hyphen was in front of it.
- Fix highlighting breaking when the word
regex
was used as a routine name.
Fixes Issue #17