File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/vs/workbench/contrib/terminalContrib/developer/browser Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -246,10 +246,12 @@ class DevModeContribution extends Disposable implements ITerminalContribution {
246
246
const promptInputModel = commandDetection . promptInputModel ;
247
247
if ( promptInputModel ) {
248
248
const name = localize ( 'terminalDevMode' , 'Terminal Dev Mode' ) ;
249
+ const isExecuting = promptInputModel . cursorIndex === - 1 ;
249
250
this . _statusbarEntry = {
250
251
name,
251
- text : `$(terminal) ${ promptInputModel . getCombinedString ( ) } ` ,
252
+ text : `$(${ isExecuting ? 'loading~spin' : ' terminal' } ) ${ promptInputModel . getCombinedString ( ) } ` ,
252
253
ariaLabel : name ,
254
+ tooltip : 'The detected terminal prompt input' ,
253
255
kind : 'prominent'
254
256
} ;
255
257
if ( ! this . _statusbarEntryAccessor . value ) {
You can’t perform that action at this time.
0 commit comments