Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
initial
  • Loading branch information
hypercubestart committed Oct 18, 2019
commit 3e2bc3524b277e339b48364b09641546d565a05d
2 changes: 1 addition & 1 deletion src/vs/editor/common/config/editorOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3264,7 +3264,7 @@ export const EditorOptions = {
5, 0, 30,
{
markdownDescription: nls.localize('tasksQuickOpenHistory',
"Controls the number of recent items tracked in task quick open dialog.")
"Controls the number of recent items tracked in task quick open dialog.")
}
)),
useTabStops: register(new EditorBooleanOption(
Expand Down
22 changes: 11 additions & 11 deletions src/vs/workbench/contrib/tasks/browser/abstractTaskService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1975,18 +1975,18 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
}
return entries;
}), {
placeHolder,
matchOnDescription: true,
onDidTriggerItemButton: context => {
let task = context.item.task;
this.quickInputService.cancel();
if (ContributedTask.is(task)) {
this.customize(task, undefined, true);
} else if (CustomTask.is(task)) {
this.openConfig(task);
placeHolder,
matchOnDescription: true,
onDidTriggerItemButton: context => {
let task = context.item.task;
this.quickInputService.cancel();
if (ContributedTask.is(task)) {
this.customize(task, undefined, true);
} else if (CustomTask.is(task)) {
this.openConfig(task);
}
}
}
});
});
}

private showIgnoredFoldersMessage(): Promise<void> {
Expand Down