ganezdragon/tree-sitter-perl

Broken syntax after a line of code

Closed this issue · 3 comments

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";
}

@brneor , backtick quotes aren't supported as of now. Let me work on this soon.

this should work now. closing it.

@ganezdragon ty for your attention and speed on this one :)