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
This would be defined here https://github.com/bscan/PerlNavigator/blob/main/syntaxes/perl-scopes.json, and pointing to another .json file. The goal would be highlighting the word multi here:
multi
use Syntax::Keyword::MultiSub; use experimental 'signatures'; multi sub max() { return undef; } multi sub max($x) { return $x; } multi sub max($x, @more) { my $y = max(@more); return $x > $y ? $x : $y; } say max(1, 2, 15, 3, 4); # prints 15
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This would be defined here https://github.com/bscan/PerlNavigator/blob/main/syntaxes/perl-scopes.json, and pointing to another .json file. The goal would be highlighting the word
multi
here:The text was updated successfully, but these errors were encountered: