对于以下代码:this.fooService .bar$ .pipe(takeUntil(this.destroy$)) .subscribe( (value: ValueType) => { // do something } );而不是像这样折叠它:this.fooService .bar$ .pipe(takeUntil(this.destroy$)) .subscribe( (value: ValueType) => {...} );我希望 WebStorm 这样折叠它:this.fooService ...
1 回答
ABOUTYOU
TA贡献1812条经验 获得超5个赞
你可以做到这一点editor-fold,并desc会折叠显示器。
this.fooService //<editor-fold desc="...">
.bar$
.pipe(takeUntil(this.destroy$))
.subscribe(
(value: ValueType) => {
// do something
}
);
//</editor-fold>
最终做这样的事情:
this.fooService ...
希望它有帮助!
添加回答
举报
0/150
提交
取消