From: Will Budic Date: Tue, 25 Jun 2024 02:17:12 +0000 (+1000) Subject: Added debugging howto instructions for vscode editor. X-Git-Url: https://lifelog.hopto.org/gitweb/?a=commitdiff_plain;h=e3f3b000301c9944e12a458fa9ba3428786728dd;p=PerlCNF.git Added debugging howto instructions for vscode editor. --- diff --git a/tests/TestManager.pm b/tests/TestManager.pm index 9e8bb7a..637e16b 100644 --- a/tests/TestManager.pm +++ b/tests/TestManager.pm @@ -321,4 +321,21 @@ Documentation : Specifications_For_CNF_ReadMe.md So it could not be the actual or current version, can vary or has been modiefied for what ever purpose in another project. Please leave source of origin in this file for future references. Open Source Code License -> https://github.com/wbudic/PerlCNF/blob/master/ISC_License.md -=cut copyright \ No newline at end of file +=cut copyright + +### +# To debug in vscode you need the extension LanguageServer and Debuger by Gerald Richter +# the optional Perl Navigator uses also the LanguagerServer but isn't one. +# To debug in vs code the local use lib ... have to be commented out. +# Do not forget to uncoment them when commiting or using outside of vscode. +# Setup settings.json now too. +# +# Here is LanguageServer settings example for settings.json +# requires full paths for Gerald's extension because it is dumb to reslove this. +# +# "perl.perlInc": [ +# "/home/will/dev_new/PerlCNF/tests", +# "/home/will/dev_new/PerlCNF/system/modules" +# ] +# +### \ No newline at end of file