diff --git a/src/vs/workbench/contrib/outline/browser/outlinePanel.ts b/src/vs/workbench/contrib/outline/browser/outlinePanel.ts index a34f2eebbdfdf4ef14d2db60bf417430bc1e4282..6c835eb5c066076051473b1be18928145ab587af 100644 --- a/src/vs/workbench/contrib/outline/browser/outlinePanel.ts +++ b/src/vs/workbench/contrib/outline/browser/outlinePanel.ts @@ -456,7 +456,7 @@ export class OutlinePanel extends ViewletPanel { } if (!editor || !editor.hasModel() || !DocumentSymbolProviderRegistry.has(editor.getModel())) { - return this._showMessage(localize('no-editor', "There are no editors open that can provide outline information.")); + return this._showMessage(localize('no-editor', "The active editor cannot provide outline information.")); } let textModel = editor.getModel();