MartinGC94
MartinGC94
The completion values comes from PowerShell itself and it intentionally leaves out parameter aliases if the real parameter is available in the completion result list. If you type in `New-Item...
`` represents hitting the tab key to tab complete the text. So whatever method you use to trigger completions in neovim should be triggered after you've typed `-T`.
``` PS C:\> (TabExpansion2 'New-Item -t').CompletionMatches CompletionText ListItemText ResultType ToolTip -------------- ------------ ---------- ------- -Type Type ParameterName [string] Type -Target Target ParameterName [Object] Target PS C:\> ``` Most likely the...
This can be fixed here: https://github.com/PowerShell/PowerShell/blob/master/src/System.Management.Automation/engine/CommandCompletion/CompletionCompleters.cs#L6882 by changing it from `completionText = $"'{memberName}'";` to `completionText = $"'{memberName.Replace("'", "''")}'";` which is how it's done in other places. Though like in those...
Definitely. What I suggested before was just a quick fix. Ideally someone should do what this PR tried to do: https://github.com/PowerShell/PowerShell/pull/10226 which is to go through all the completers to...
I didn't know about that method but I don't see any reason why it should be preferred over `.Replace`.
The reasoning doesn't line up with how `Get-Clipboard` works today. `Get-Clipboard` is already transforming the line endings by splitting on whatever line ending the platform uses. So if you modify...
@SteveL-MSFT Where do I go from here? I get that the WGs don't have time to go back and forth with the same issue indefinitely, but when it seems like...
If you run a job in Ansible AWX: https://github.com/ansible/awx you get an option to download the job output. This job output is saved with Unix line endings, and if you...
I guess that's better than nothing but the UX for this will be quite bad. With a `Delimiter` parameter the user won't be able to simply set a default value...