Add pathSeparator to configurationEditing

Fixes #128015
This commit is contained in:
Alex Ross 2021-07-06 09:51:52 +02:00
parent 4153751d05
commit 23e71e2bcc
No known key found for this signature in database
GPG key ID: 89DDDBA66CBA7840

View file

@ -57,6 +57,7 @@ function registerVariableCompletions(pattern: string): vscode.Disposable {
{ label: 'fileBasename', detail: localize('fileBasename', "The current opened file's basename") },
{ label: 'fileBasenameNoExtension', detail: localize('fileBasenameNoExtension', "The current opened file's basename with no file extension") },
{ label: 'defaultBuildTask', detail: localize('defaultBuildTask', "The name of the default build task. If there is not a single default build task then a quick pick is shown to choose the build task.") },
{ label: 'pathSeparator', detail: localize('pathSeparator', "The character used by the operating system to separate components in file paths") },
].map(variable => ({
label: '${' + variable.label + '}',
range: new vscode.Range(startPosition, position),