Summary: Toggle the Outline view in the Windows PowerShell ISE.
How can I easily toggle the Outline view in the Windows PowerShell ISE?
Use the ToggleOutlineExpansion method from the editor object of the CurrentFile object from $psise:
$psise.CurrentFile.Editor.ToggleOutliningExpansion()
0 comments