We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In this example (from https://github.com/gisle/tkx/blob/2c96533/lib/Tkx.pm#L338), $) is highlighted as if it were an interpolated variable:
$)
last if $pkg !~ /^Tkx(::|$)/;
Likewise $| would be highlighted in this equivalent statement:
$|
last if $pkg !~ /^Tkx($|::)/;
However $ is highlighted correctly when using m// instead of //:
$
m//
//
last if $pkg !~ m/^Tkx(::|$)/; last if $pkg !~ m/^Tkx($|::)/;
The text was updated successfully, but these errors were encountered:
Tkx.pm: avoid syntax highlighting bug
2b54da0
See textmate/perl.tmbundle#46
No branches or pull requests
In this example (from https://github.com/gisle/tkx/blob/2c96533/lib/Tkx.pm#L338),
$)
is highlighted as if it were an interpolated variable:Likewise
$|
would be highlighted in this equivalent statement:However
$
is highlighted correctly when usingm//
instead of//
:The text was updated successfully, but these errors were encountered: