Justin Grote
Justin Grote
@ztrhgf Specific examples would be great or a screenshot when it happens. Note that intellisense requires the PSIC to be active and available, so if you for instance run `sleep...
On the architecture document, it may be worth using Mermaid markdown to render a few diagrams since it is now supported in Github
PSES is doable standalone in devcontainer, the extension is very unlikely to be able to however since you can't start GUI apps easily in a container.
@SeeminglyScience maybe debounce it to a configurable setting delay, say 500ms or so, so that it's not slamming `BindCommand`s? Also should be very cacheable.
This works fine in PS7, 5.1 has a lot of known unicode issues. This looks like a legit bug tho because it works fine in 5.1 terminal regular. I know...
@jasonmohyla no worries, and congratulations on opening your first issue on GitHub!
@brwilkinson to expand, most intellisense stuff uses a PowerShell-provided API to do the completion, and that API runs in the same pipeline thread where your script runs (for good reason,...
@TylerLeonhardt This should probably be retagged as an enhancement, since it's technically working as expected. The ISE-Compatibility tag should also be removed as ISE does the same thing with F8...
@simonsabin if I'm using psscriptroot in my code, I'll set a Breakpoint and use the debugging tool to run either the script itself or a pester test that calls the...
I did a bit more investigation on this Since this works in an F8 context: `if (-not $PSScriptRoot) {$PSScriptRoot = $pwd}` Maybe it would be possible to add something similar...