Skip to content

Commit 73b48e9

Browse files
authored
provide activeEditorState setting completion (microsoft#242216)
fixes microsoft#241880
1 parent 477d7c4 commit 73b48e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/configuration-editing/src/settingsDocumentHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ export class SettingsDocument {
127127
completions.push(this.newSimpleCompletionItem(getText('separator'), range, vscode.l10n.t("a conditional separator (' - ') that only shows when surrounded by variables with values")));
128128
completions.push(this.newSimpleCompletionItem(getText('activeRepositoryName'), range, vscode.l10n.t("the name of the active repository (e.g. vscode)")));
129129
completions.push(this.newSimpleCompletionItem(getText('activeRepositoryBranchName'), range, vscode.l10n.t("the name of the active branch in the active repository (e.g. main)")));
130-
130+
completions.push(this.newSimpleCompletionItem(getText('activeEditorState'), range, vscode.l10n.t("the state of the active editor (e.g. modified).")));
131131
return completions;
132132
}
133133

0 commit comments

Comments
 (0)