Colin Svingen
Colin Svingen
Do you have either `Format on Save` or `Build on Save` enabled? I wonder if it launched a process for each file.
I am not able to reproduce this issue. I have `/snap/bin` in my path and I don't have any issue when not setting the zig path in the extension settings....
Extensions can add commands to the command palette. See, for example, the go extension by Microsoft: https://github.com/microsoft/vscode-go/blob/master/package.json#L137 This is something I was planning to add once my other PRs were...
As far as I can find, this isn't controlled by the extension. Syntax highlighters return only a small set of token types to the theme to colour (eg: functions, keywords,...
Are you able to override it when importing? `Import-Module [-Global] [-Prefix ]` I'm reluctant to hard code it because that would also limit people's options when there is a clash.
What is the "autoloader"? Is there some way to blacklist this module from it and then manually invoke `Import-Module` from your profile?
Hello. It turns out this is a known bug with PowerShell: https://github.com/PowerShell/PowerShell/issues/2590 You can read an excellent description of the problem by another module author: https://pkisharp.github.io/ACMESharp-docs/Why-AllowClobber.html For the time being,...
This is by design. Albeit a bad design. The variable set by the connect command is scoped to your terminal session and isn't available in modules. I will investigate improving...
I'm not sure. Can you try ``` $variables = Get-OctoVariable -Project $proyectName | Where-Object { $.Name -like $nameVariable} foreach ($var in $variables) { foreach ($key in $var.Scope) { if ($key...
The `VariableResource` itself has a `IsSensitive` flag. Does the first method not work for a straight copy?