From 6317999d6bdb9683747662c0e41dcf4329d53119 Mon Sep 17 00:00:00 2001 From: gjsjohnmurray Date: Sat, 13 Jun 2020 10:26:23 +0100 Subject: [PATCH] fix #100068 Better 'Read More/Less' tips on suggest widget controls --- src/vs/editor/contrib/suggest/suggestWidget.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/editor/contrib/suggest/suggestWidget.ts b/src/vs/editor/contrib/suggest/suggestWidget.ts index 3956148566d..ad9b8677e6b 100644 --- a/src/vs/editor/contrib/suggest/suggestWidget.ts +++ b/src/vs/editor/contrib/suggest/suggestWidget.ts @@ -159,7 +159,7 @@ class ItemRenderer implements IListRenderer { const options = this.editor.getOptions(); @@ -321,7 +321,7 @@ class SuggestionDetails { this.header = append(this.body, $('.header')); this.close = append(this.header, $('span' + Codicon.close.cssSelector)); - this.close.title = nls.localize('readLess', "Read less...{0}", this.kbToggleDetails); + this.close.title = nls.localize('readLess', "Read Less ({0})", this.kbToggleDetails); this.type = append(this.header, $('p.type')); this.docs = append(this.body, $('p.docs'));