猿问

如何在 WebStorm 中折叠缩进的函数链?

对于以下代码:


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 ...


慕斯王
浏览 230回答 1
1回答

ABOUTYOU

你可以做到这一点editor-fold,并desc会折叠显示器。this.fooService //<editor-fold desc="...">&nbsp; .bar$&nbsp; .pipe(takeUntil(this.destroy$))&nbsp; .subscribe(&nbsp; &nbsp; (value: ValueType) => {&nbsp; &nbsp; &nbsp; // do something&nbsp; &nbsp; }&nbsp; );&nbsp; //</editor-fold>最终做这样的事情:this.fooService ...希望它有帮助!
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答