bug(ui) showLineNumbers had the wrong default value. (#13356)

This commit is contained in:
Jacob Richman
2025-11-18 19:33:40 -08:00
committed by GitHub
parent b644f037a3
commit e8d0e0d342
3 changed files with 4 additions and 4 deletions

View File

@@ -224,7 +224,7 @@ their corresponding top-level category object in your `settings.json` file.
- **`ui.showLineNumbers`** (boolean):
- **Description:** Show line numbers in the chat.
- **Default:** `false`
- **Default:** `true`
- **`ui.showCitations`** (boolean):
- **Description:** Show citations for generated text in the chat.

View File

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

View File

@@ -264,8 +264,8 @@
"showLineNumbers": {
"title": "Show Line Numbers",
"description": "Show line numbers in the chat.",
"markdownDescription": "Show line numbers in the chat.\n\n- Category: `UI`\n- Requires restart: `no`\n- Default: `false`",
"default": false,
"markdownDescription": "Show line numbers in the chat.\n\n- Category: `UI`\n- Requires restart: `no`\n- Default: `true`",
"default": true,
"type": "boolean"
},
"showCitations": {