feat(accessibility): Add option to disable loading phrases (#745)

This commit is contained in:
N. Taylor Mullen
2025-06-04 00:46:57 -07:00
committed by GitHub
parent d179b3aae4
commit afc30e314f
6 changed files with 31 additions and 3 deletions

View File

@@ -21,6 +21,10 @@ export enum SettingScope {
Workspace = 'Workspace',
}
export interface AccessibilitySettings {
disableLoadingPhrases?: boolean;
}
export interface Settings {
theme?: string;
sandbox?: boolean | string;
@@ -32,6 +36,7 @@ export interface Settings {
showMemoryUsage?: boolean;
contextFileName?: string;
title?: string;
accessibility?: AccessibilitySettings;
// Git-aware file filtering settings
fileFiltering?: {