提交 a5e58657 编写于 作者: S Sandeep Somavarapu

Update description for workspace config properties

上级 e49ad206
...@@ -457,20 +457,22 @@ export class WorkspaceServiceImpl extends WorkspaceService { ...@@ -457,20 +457,22 @@ export class WorkspaceServiceImpl extends WorkspaceService {
properties: { properties: {
'id': { 'id': {
type: 'string', type: 'string',
description: nls.localize('workspaceConfig.id', "Unique workspace id"), description: nls.localize('workspaceConfig.id.description', "Workspace Identifier. Used for storing internal workspace state, which can be lost on changing."),
minLength: 1 minLength: 1
}, },
'folders': { 'folders': {
minItems: 1, minItems: 1,
uniqueItems: true, uniqueItems: true,
description: nls.localize('workspaceConfig.folders.description', "List of folders to be loaded in the workspace. Must be a file path. e.g. `file:///root/folderA`"),
items: { items: {
type: 'string' type: 'string',
pattern: '^file:///'
} }
}, },
'settings': { 'settings': {
type: 'object', type: 'object',
default: {}, default: {},
description: nls.localize('workspaceSettings.description', "Configure workspace settings"), description: nls.localize('workspaceConfig.settings.description', "Workspace settings"),
$ref: schemaId $ref: schemaId
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册