fix: correct showLineNumbers default value to true

- Changed default value from false to true in settingsSchema.ts
- This aligns the schema with the actual code behavior (?? true fallback)
- Matches documentation and test expectations
- Resolves inconsistency reported in issue #1764

Fixes #1764
This commit is contained in:
LaZzyMan 2026-02-12 11:42:58 +08:00
parent fb9f3fb4dc
commit 428901f136

View file

@ -373,7 +373,7 @@ const SETTINGS_SCHEMA = {
label: 'Show Line Numbers in Code',
category: 'UI',
requiresRestart: false,
default: false,
default: true,
description: 'Show line numbers in the code output.',
showInDialog: true,
},