Benct Philip Jonsson
Benct Philip Jonsson
I still stand by my request but meanwhile I have found that the code below DWIM in 95% of cases with a minimum of fuss, so for workaround reference: ``````perl...
Maybe a `/C` modifier to keep backwards compat?
Where I would really need this is in replacement. When I have three lines like these ```perl my $var_class = $meta->value('var-class') // $meta->value('/var-config/class') // $ENV{VAR_CLASS} // 'v'; my $var_first_key =...
There are some languages which allow hyphens in identifiers, among them Perl 6 which even allows apostrophes, although I probably won't ever use apostrophes! Lower camel case has a special...
App::pandoc::preprocess is way to hairy for my taste. In fact I prefer https://metacpan.org/pod/IPC::Run3 to using `system` directly, having been bitten by too much weirdness in the past. The main advantage...
> The script filter.pl would > > ``` > transform the full AST and collect a list of system calls > execute instances of external commands (ditaa...) in parallel >...
I guess I could use [lrexlib][] but then patterns will be entirely incompatible with the Lua pattern syntax when my idea is that programs using my (MoonScript) class can supply...
I mean as per the TODO section in the readme: > ## TODO > - Expand `accept`s and `reject`s to handle highlights and comments. > - Implement operators and keyboard...
@bdarcus I even write my JSON schemas in YAML. I use a Perl script using [YAML][]/[JSON][]/[JSON Schema][] modules available on CPAN to load both data and schemas and then validate....