在IntelliJ idea中折叠自定义区域(typeScript)



在Visual Studio和Netbeans中,我可以折叠带有行注释的自定义区域。

-visual studio style:

#region Description Your code goes here... #endregion

netbeans风格:

// <editor-fold desc="Description">
     Your code goes here...
// </editor-fold>

我的问题是,我可以折叠自定义区域在智能的想法?

  • 进入Code -> Surround With.. Ctrl + Alt + T )
  • 选择地区. .

Typescript

VSCode

// #region NameOfRegion
   // * Your Code Here ...
// #endregion

WebStorm

// region NameOfRegion
   // * Your Code Here ...
// endregion

区别在于'区域'

前面的'#'

相关内容

  • 没有找到相关文章

最新更新