mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 22:21:22 -07:00
bug(ui) showLineNumbers had the wrong default value. (#13356)
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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,
|
||||
},
|
||||
|
||||
@@ -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": {
|
||||
|
||||
Reference in New Issue
Block a user