I know how to use back-tick to create a multi-line command in the script pane or in a PowerShell script. This is not a question about that. If I am in vanilla PowerShell (not ISE) and I want to type this command at the prompt:
Get-Command `
| Sort Name `
| Select -First 10
How do I move to the next line after Get-Command
without executing it?