File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
src/PowerShellEditorServices/Services/PowerShell/Console Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 88using System . Collections . Generic ;
99using System . Linq ;
1010using System . Management . Automation ;
11- using System . Management . Automation . Language ;
1211using System . Text ;
1312using System . Threading ;
13+ using System . Threading . Tasks ;
1414
1515namespace Microsoft . PowerShell . EditorServices . Services . PowerShell . Console
1616{
1717 using System ;
18- using System . Threading . Tasks ;
1918
2019 internal class LegacyReadLine : TerminalReadLine
2120 {
@@ -331,6 +330,10 @@ public override string ReadLine(CancellationToken cancellationToken)
331330 currentCompletion = null ;
332331 currentHistory = null ;
333332
333+ // TODO: Add line continuation support:
334+ // - When shift+enter is pressed, or
335+ // - When the parse indicates incomplete input
336+
334337 //if ((keyInfo.Modifiers & ConsoleModifiers.Shift) == ConsoleModifiers.Shift)
335338 //{
336339 // // TODO: Start a new line!
You can’t perform that action at this time.
0 commit comments