mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
Merge #708
708: Clear the console when running single tasks r=matklad a=kjeremy Co-authored-by: kjeremy <kjeremy@gmail.com>
This commit is contained in:
commit
42ee08f140
1 changed files with 2 additions and 1 deletions
|
@ -118,7 +118,8 @@ export async function handleSingle(runnable: Runnable) {
|
|||
task.group = vscode.TaskGroup.Build;
|
||||
task.presentationOptions = {
|
||||
reveal: vscode.TaskRevealKind.Always,
|
||||
panel: vscode.TaskPanelKind.Dedicated
|
||||
panel: vscode.TaskPanelKind.Dedicated,
|
||||
clear: true
|
||||
};
|
||||
|
||||
return vscode.tasks.executeTask(task);
|
||||
|
|
Loading…
Reference in a new issue