File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/PowerShellEditorServices/Services/PowerShell Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ private void Run()
113113 // We need to override the idle handler here,
114114 // since readline will be overridden when the initial Powershell runspace is instantiated above
115115 _readLineProvider . ReadLine . TryOverrideIdleHandler ( OnPowerShellIdle ) ;
116- _psesHost . PushNewReplTask ( ) ;
116+ _psesHost . StartRepl ( ) ;
117117 RunTopLevelConsumerLoop ( ) ;
118118 }
119119
Original file line number Diff line number Diff line change @@ -153,6 +153,11 @@ internal void CancelCurrentPrompt()
153153 _consoleReplRunner ? . CancelCurrentPrompt ( ) ;
154154 }
155155
156+ internal void StartRepl ( )
157+ {
158+ _consoleReplRunner ? . StartRepl ( ) ;
159+ }
160+
156161 internal void PushNewReplTask ( )
157162 {
158163 _consoleReplRunner ? . PushNewReplTask ( ) ;
You can’t perform that action at this time.
0 commit comments