provide activeEditorState setting completion (#242216)

fixes #241880
This commit is contained in:
Megan Rogge
2025-02-27 12:27:36 -06:00
committed by GitHub
parent 477d7c4f63
commit 73b48e98f5

View File

@@ -127,7 +127,7 @@ export class SettingsDocument {
completions.push(this.newSimpleCompletionItem(getText('separator'), range, vscode.l10n.t("a conditional separator (' - ') that only shows when surrounded by variables with values")));
completions.push(this.newSimpleCompletionItem(getText('activeRepositoryName'), range, vscode.l10n.t("the name of the active repository (e.g. vscode)")));
completions.push(this.newSimpleCompletionItem(getText('activeRepositoryBranchName'), range, vscode.l10n.t("the name of the active branch in the active repository (e.g. main)")));
completions.push(this.newSimpleCompletionItem(getText('activeEditorState'), range, vscode.l10n.t("the state of the active editor (e.g. modified).")));
return completions;
}