Dirk MG Seynhaeve
Dirk MG Seynhaeve
I'm trying to find an extension where most of the debugging activities in VS code actually work. So far, reasonable results with Perl Debug. However, it would be EXTREMELY handy...
For a Bash case statement, the individual cases can be matched based on extended glob syntax; Consider the `/+([a-z])` expression in the first branch: ```bash declare -a opts=() declare -a...
I am not sure this is related to #135, as there is no assignment in my test: ``` if ! { test -d /tmp && test -d /home ; };...
In addition to the details for issue, please provide us *Executables* information and *Debug output* unless you have confidence that they don't help us. ## Executables Version of bash-debug: v0.3.9...
When installing, at first I get an error: ``` $ cpanm Perl::LanguageServer --> Working on Perl::LanguageServer Fetching http://www.cpan.org/authors/id/G/GR/GRICHTER/Perl-LanguageServer-2.1.0.tar.gz ... OK Configuring Perl-LanguageServer-v2.1.0 ... OK Building and testing Perl-LanguageServer-v2.1.0 ... FAIL...
I have a workspace where I have multiple folders... Some of those folders are where my libraries are stored. ```json { "folders": [ { "path": "/a/b/c/d/e/f/lib1", }, { "path": "/q/r/s/t/lib2",...
I have a `$splitter`variable which is a parameter of one of my subroutines: ``` my $splitter = qr{ [,\s]+ # Sequence of commas/spaces (?= # Start of instruction '[' [[]...
Consider: ``` use English; $OUTPUT_AUTOFLUSH = 1; # $| STDOUT buffer $LIST_SEPARATOR = q(/); # $" Array interpolation $OUTPUT_FIELD_SEPARATOR = q(-); # $, print LIST context $OUTPUT_RECORD_SEPARATOR = " --\n";...
I have a rather complicated infrastructure that sets a rich environment. A Perl application then runs in this environment, and reacts to it. That needs debugging. I start VS Code,...
I'm using the formatter in VS Code to manage my Bash startup files. The `Bash IDE` language server recognizes that they are written in a supported language. For my scripts,...