MartinGC94
MartinGC94
Considering that relative paths work like: `using module ..\..\TestModule` I don't see why ~ shouldn't also work.
I actually have a simple version of this in my tabexpansion2. It's not very pretty, but it works decently well: Code here ``` function TabExpansion2 { [CmdletBinding(DefaultParameterSetName = 'ScriptInputSet')] [OutputType([System.Management.Automation.CommandCompletion])]...
Provide a way to exclude cmdlets from some modules from completions in a concrete powershell session
Well, this is awkward. I actually have 2 pending PRs to fix this particular issue. One for adding the option to `Get-Command`: https://github.com/PowerShell/PowerShell/pull/18955 and another to add commands to manage...
@andyleejordan Yes. I get completions as soon as I press space, but if I backspace and press Ctrl+Space the results are empty.
I just tried opening an empty .cs file and I got keyword completions so it must be related to the extension/editor services.
@JustinGrote Logs: [Trace - 7:42:59 PM] Sending request 'textDocument/completion - (62)'. Params: { "textDocument": { "uri": "untitled:Untitled-1" }, "position": { "line": 0, "character": 0 }, "context": { "triggerKind": 1 }...
I made a suggestion to add an API for this: https://github.com/PowerShell/PowerShell/issues/19619 feel free to give me feedback on the idea I have for the implementation.
@JamesWTruher (and WG) thanks for the review. I have a few questions. First, regarding: > the starting token (@"" or @'') must be the last token of a line This...
@JamesWTruher I've updated the RFC to remove the single line here-string references and to use the multiple quotes syntax rather than the `@` symbols. I also made the specification more...
That's odd. It works perfectly fine on my PC, even if I delete the `PowerShell` folder. Does it work if you manually create the folder? How about some other path...