From 62827a847b8621549e30dbbd0eb76ec9af47fd8c Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Tue, 31 Mar 2020 17:49:20 +0200 Subject: [PATCH] fix #93840 --- src/vs/editor/contrib/quickAccess/gotoSymbolQuickAccess.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/editor/contrib/quickAccess/gotoSymbolQuickAccess.ts b/src/vs/editor/contrib/quickAccess/gotoSymbolQuickAccess.ts index faefffd2958..733e818368a 100644 --- a/src/vs/editor/contrib/quickAccess/gotoSymbolQuickAccess.ts +++ b/src/vs/editor/contrib/quickAccess/gotoSymbolQuickAccess.ts @@ -41,7 +41,7 @@ export abstract class AbstractGotoSymbolQuickAccessProvider extends AbstractEdit } protected provideWithoutTextEditor(picker: IQuickPick): IDisposable { - const label = localize('cannotRunGotoSymbolWithoutEditor', "Open a text editor first to go to a symbol."); + const label = localize('cannotRunGotoSymbolWithoutEditor', "To go to a symbol, first open a text editor with symbol information."); picker.items = [{ label, index: 0, kind: SymbolKind.String }]; picker.ariaLabel = label; @@ -70,7 +70,7 @@ export abstract class AbstractGotoSymbolQuickAccessProvider extends AbstractEdit const disposables = new DisposableStore(); // Generic pick for not having any symbol information - const label = localize('cannotRunGotoSymbolWithoutSymbolProvider', "Open a text editor with symbol information first to go to a symbol."); + const label = localize('cannotRunGotoSymbolWithoutSymbolProvider', "The active text editor does not provide symbol information."); picker.items = [{ label, index: 0, kind: SymbolKind.String }]; picker.ariaLabel = label; -- GitLab