You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vs/workbench/contrib/tasks/common/taskService.ts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ export const ShellExecutionSupportedContext = new RawContextKey<boolean>('shellE
20
20
exportconstTaskCommandsRegistered=newRawContextKey<boolean>('taskCommandsRegistered',false,nls.localize('tasks.taskCommandsRegistered',"Whether the task commands have been registered yet"));
21
21
exportconstProcessExecutionSupportedContext=newRawContextKey<boolean>('processExecutionSupported',false,nls.localize('tasks.processExecutionSupported',"Whether ProcessExecution tasks are supported. Consider using in the when clause of a \'taskDefinition\' contribution."));
22
22
exportconstServerlessWebContext=newRawContextKey<boolean>('serverlessWebContext',false,nls.localize('tasks.serverlessWebContext',"True when in the web with no remote authority."));
23
+
exportconstTasksAvailableContext=newRawContextKey<boolean>('tasksAvailable',false,nls.localize('tasks.tasksAvailable',"Whether any tasks are available in the workspace."));
0 commit comments