feat(settings): rename negative settings to positive naming (disable* -> enable*) (#14142)

Co-authored-by: jacob314 <jacob314@gmail.com>
This commit is contained in:
Alexander Farber
2026-01-16 23:33:49 +01:00
committed by GitHub
parent f2d3b76389
commit 608da23393
25 changed files with 785 additions and 243 deletions

View File

@@ -191,22 +191,22 @@ const SETTINGS_SCHEMA = {
description: 'Enable Vim keybindings',
showInDialog: true,
},
disableAutoUpdate: {
enableAutoUpdate: {
type: 'boolean',
label: 'Disable Auto Update',
label: 'Enable Auto Update',
category: 'General',
requiresRestart: false,
default: false,
description: 'Disable automatic updates',
default: true,
description: 'Enable automatic updates.',
showInDialog: true,
},
disableUpdateNag: {
enableAutoUpdateNotification: {
type: 'boolean',
label: 'Disable Update Nag',
label: 'Enable Auto Update Notification',
category: 'General',
requiresRestart: false,
default: false,
description: 'Disable update notification prompts.',
default: true,
description: 'Enable update notification prompts.',
showInDialog: false,
},
checkpointing: {
@@ -577,13 +577,13 @@ const SETTINGS_SCHEMA = {
description: 'Accessibility settings.',
showInDialog: false,
properties: {
disableLoadingPhrases: {
enableLoadingPhrases: {
type: 'boolean',
label: 'Disable Loading Phrases',
label: 'Enable Loading Phrases',
category: 'UI',
requiresRestart: true,
default: false,
description: 'Disable loading phrases for accessibility',
default: true,
description: 'Enable loading phrases during operations.',
showInDialog: true,
},
screenReader: {
@@ -914,13 +914,13 @@ const SETTINGS_SCHEMA = {
`,
showInDialog: true,
},
disableFuzzySearch: {
enableFuzzySearch: {
type: 'boolean',
label: 'Disable Fuzzy Search',
label: 'Enable Fuzzy Search',
category: 'Context',
requiresRestart: true,
default: false,
description: 'Disable fuzzy search when searching for files.',
default: true,
description: 'Enable fuzzy search when searching for files.',
showInDialog: true,
},
},