From bfb2e506c5ba2a1a5b2166e4efb92f2156e4374f Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Tue, 8 Jun 2021 16:49:20 +0200 Subject: [PATCH] Improve description for the lineHeight setting to reflect the proposed changes --- src/vs/editor/common/config/editorOptions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/editor/common/config/editorOptions.ts b/src/vs/editor/common/config/editorOptions.ts index b1f53be7ed8..b29340f37ac 100644 --- a/src/vs/editor/common/config/editorOptions.ts +++ b/src/vs/editor/common/config/editorOptions.ts @@ -2478,7 +2478,7 @@ class EditorLineHeight extends EditorFloatOption { EditorOption.lineHeight, 'lineHeight', EDITOR_FONT_DEFAULTS.lineHeight, x => EditorFloatOption.clamp(x, 0, 150), - { description: nls.localize('lineHeight', "Controls the line height. Use 0 to compute the line height from the font size.") } + { markdownDescription: nls.localize('lineHeight', "Controls the line height. \n - Use 0 to automatically compute the line height from the font size.\n - Values between 0 and 8 will be used as a multiplier with the font size.\n - Values greater than 8 will be used as effective values.") } ); } -- GitLab