Michael Hayes
Michael Hayes
Just realised that if I change the view (e.g. from vis.JS Map to Html) of the already open preview straight after I've edited the config file, then I only need...
Thanks for trying. I've just reproduced it with all extensions disabled apart from the debugger and your extensionPath. Here's a screen recording of me fixing it by commenting out the...
@rewqazxv within the launch.json the following structure has worked for me: ``` json "program": { "lua": "lua5.3", "file": "${workspaceFolder}/test/main.lua", }, ``` Perhaps worth trying?
Thanks! For now, I've learnt that you can pull arbitrary VSCode settings into launch.json (or tasks.json) like this: ``` json "LUA_PATH": "${config:lua.debug.settings.path}", ``` In this case, using a setting I'd...
I've just realised that the breakpoints sometimes work, but they don't stop at the line I put the breakpoint on. Before that, after I hit the debug button, the breakpoints...
This chrome extension gives you markdown preview in workflowy notes, might help you: https://chrome.google.com/webstore/detail/workflowy-for-coders/hogpngcijkfmbfijfkaapeejhijipddp?hl=en-GB
Specifically I am concerned about 1.1's implicit typing leading to issues like the Norway problem, where NO is converted to boolean false. https://hitchdev.com/strictyaml/why/implicit-typing-removed/ This kind of implicit typing was removed...
Thanks for replying quickly. Re library, maybe this meets your criteria? https://github.com/mikefarah/yq/#install Not used it yet, just on my radar as something i might use in bash scripts. Afraid I...