Broken syntax after a line of code
Closed this issue · 3 comments
brneor commented
I'm using tree-sitter-perl through treesitter.nvim
sub mySub {
my $randomBytes = `head -c 32 /dev/urandom`; # After this line there's no syntax highlighting anymore
return encode_base64url($randomBytes);
}
sub _log {
my ($text) = @_;
print encode_utf8($text) . "\n";
}
ganezdragon commented
@brneor , backtick quotes aren't supported as of now. Let me work on this soon.
ganezdragon commented
this should work now. closing it.
brneor commented
@ganezdragon ty for your attention and speed on this one :)