Open
Description
When using programs(less
, fzf
etc.), that emit to alternate buffers, inside ScriptBlock
, there is no display of the program buffer.
For Eg:
Set-PSReadLineKeyHandler -Chord Ctrl+o -ScriptBlock { less foo.txt }
Set-PSReadLineKeyHandler -Chord Ctrl+o -ScriptBlock { find . | fzf }
Show no output
Couple of questions
a) Why is that?
b) What should I do if I need to display them? (Start separate process and redirect stdout from that process?)