Dongbo Wang
Dongbo Wang
Due to the limitation of the tab completion results returned from PowerShell, the tool tip is just a multi-line string. So, it's not feasible to support this in `MenuComplete`. That...
@dhatch48 You can do that by `Set-PSReadLineKeyHandler -Key 'j,k' -ViMode Insert -Function ViCommandMode`
Yeah, `j` will be bound after that and won't be treated as a literal character. I think that's just an example. Key sequences should be chosen to not interfere with...
I see. Thanks for clarifying it. I have changed the title and PR description to reflect what is really asked for.
@rkeithhill Can you please confirm if this is still an issue with the latest PSReadLine module?
@rkeithhill Thanks for checking and confirming.
The repro `ssh $env:USERNAME@localhost | tee.exe log.log` is the "_native-command piping to native-command_" scenario, which is a duplicate of https://github.com/PowerShell/PowerShell/issues/1908, which we plan to fix in 7.4 and here is...
Closing this PR as @adityapatwardhan is actively working on a solution to this issue.
~Closing this PR, as https://github.com/PowerShell/PowerShell/pull/19071#discussion_r1092808924 proposes a better solution to the problem. @ili101 I think all those issues will be resolved if `PSObject` properly implements `System.IConvertible`.~ The idea to implement...
Thanks @MartinGC94 for the contribution!