提交 160bfded 编写于 作者: A Alex Dima

Folding is not supported for huge files

上级 e2179ca1
......@@ -133,7 +133,8 @@ export class FoldingController implements IEditorContribution {
this.localToDispose = dispose(this.localToDispose);
let model = this.editor.getModel();
if (!this._isEnabled || !model) {
if (!this._isEnabled || !model || model.isTooLargeForTokenization()) {
// huge files get no view model, so they cannot support hidden areas
return;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册