atom-language icon indicating copy to clipboard operation
atom-language copied to clipboard

Atom/Github Raku Syntax Highlighting Support 🦋

Results 47 atom-language issues
Sort by recently updated
recently updated
newest added

> Describe what you see, what you want to see, and perhaps some linkage to docs, synopses, or irclog chatter. ### Example Code ```perl6 @array.max; %hash{$key}:exists; ``` ### Picture [optional]...

Not sure if much can be done about it, but I notice several cases of inconsistent highlighting in the code below: - ~~`MONKEY-GUTS` is highlighted different than `MONKEY-TYPING`~~ Fixed in...

enhancement
priority:low

I'm on 1.15.0 and Unicode + code block in a string mess up highlights ### Example Code ```perl6 # This is fine: no fancy Unicode my $text = "We have...

All the stuff after `SEARCHES` closing delimiter is still highlighted as strings ### Example Code ```perl6 my @expected-searches = ; my ($y, @searches) = q:to/INPUT/, q:to/SEARCHES/.lines; xxxx INPUT beer masak...

Multi-like 「」 brackets break highlights ### Example Code ```perl6 say 「 BEGIN %*ENV:delete; BEGIN %*ENV = ('C:', 「\」); die unless $*HOME.absolute eq 「C:\」.IO.absolute; 」; # if $*DISTRO.is-win { # is-run...

> Describe what you see, what you want to see, and perhaps some linkage to docs, synopses, or irclog chatter. ### Example Code ```perl6 m/ '/' / # fine /...

> Describe what you see, what you want to see, and perhaps some linkage to docs, synopses, or irclog chatter. ### Example Code ```perl6 ``` ### Picture [optional] > Providing...

difficulty:easy

The name and keyword `class` don't get highlighted if they're non-ascii: ### Example Code ```perl6 class Highlighted {} class ッッッッッッ {} ``` ### Picture [optional] ![z](https://cloud.githubusercontent.com/assets/5747918/23918798/d15caf02-08ca-11e7-9ca5-b12a00d23eab.png) ### Leave this in....

difficulty:easy

P.S.: Found this one [in roast](https://github.com/perl6/roast/blob/master/S06-operator-overloading/sub.t). At the end of that file even if I place extra quotes into comments the highlighting is still messed up. Not sure if that's...

difficulty:hard

`proto foo` is like `proto sub foo`, but it isn't highlighted ### Example Code ```perl6 proto speed-diff (|) { } multi speed-diff (@ ($before, $after) where { [>] |$_ })...