We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to Reproduce:
Does this issue occur when all extensions are disabled?: Yes
Looks like same issue as #66749 back again?
Expected Behavior: No terminal should open Actual Behavior: Terminal opens no matter what
Example:
private async run(task: Task) { task.presentationOptions.reveal = TaskRevealKind.Never; // or TaskRevealKind.Silent try { await vscode.tasks.executeTask(task); } catch (e) { }
The text was updated successfully, but these errors were encountered:
(Experimental duplicate detection) Thanks for submitting this issue. Please also check if it is already covered by an existing one, like:
Sorry, something went wrong.
/assign @alexr00
I am not able to repro this issue. My test code:
const disposable = vscode.commands.registerCommand('extension.helloWorld', () => { const task = new vscode.Task( { type: 'shell' }, vscode.workspace.workspaceFolders![0], 'myTask', 'myExt', new vscode.ShellExecution('dir')); task.presentationOptions.reveal = vscode.TaskRevealKind.Silent; vscode.tasks.executeTask(task); });
I also tested with TaskRevealKind.Never. The terminal is not shown.
TaskRevealKind.Never
alexr00
No branches or pull requests
Steps to Reproduce:
Does this issue occur when all extensions are disabled?: Yes
Looks like same issue as #66749 back again?
Expected Behavior: No terminal should open
Actual Behavior: Terminal opens no matter what
Example:
The text was updated successfully, but these errors were encountered: