Update settings description to link to terminal setting, add Tasks to the ToC of settings editor

This commit is contained in:
Rachel Macfarlane 2019-05-09 14:37:46 -07:00
parent dc39c64906
commit 808b33b8fd
2 changed files with 6 additions and 1 deletions

View file

@ -150,6 +150,11 @@ export const tocData: ITOCEntry = {
label: localize('terminal', "Terminal"),
settings: ['terminal.*']
},
{
id: 'features/tasks',
label: localize('tasks', "Tasks"),
settings: ['tasks.*']
},
{
id: 'features/problems',
label: localize('problems', "Problems"),

View file

@ -2760,7 +2760,7 @@ configurationRegistry.registerConfiguration({
type: 'object',
properties: {
'tasks.terminal.windowsAllowConpty': {
markdownDescription: nls.localize('tasks.terminal.windowsAllowConpty', "Works in conjunction with the terminal.integrated.windowsEnableConpty setting. Both must be enabled for tasks to use conpty. Defaults to false."),
markdownDescription: nls.localize('tasks.terminal.windowsAllowConpty', "Works in conjunction with the `#terminal.integrated.windowsEnableConpty#` setting. Both must be enabled for tasks to use conpty. Defaults to `false`."),
type: 'boolean',
default: false
}