mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 11:41:04 +00:00
feat(accessibility): Add option to disable loading phrases (#745)
This commit is contained in:
parent
d179b3aae4
commit
afc30e314f
6 changed files with 31 additions and 3 deletions
|
|
@ -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?: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue