提交 9b1da790 编写于 作者: J Johannes Rieken

show no symbols found message in outline tree, #54744

上级 46e34779
......@@ -489,6 +489,10 @@ export class OutlinePanel extends ViewletPanel {
return;
}
if (TreeElement.empty(model)) {
return this._showMessage(localize('no-symbols', "No symbols found in document '{0}'", posix.basename(textModel.uri.path)));
}
let newSize = TreeElement.size(model);
if (newSize > 7500) {
// this is a workaround for performance issues with the tree: https://github.com/Microsoft/vscode/issues/18180
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册