Atom 有没有办法在新行上折叠整个选择?我正在尝试制作一个包,让我可以选择多行代码并将它们折叠起来。我的标记看起来像这样:
/* Text Colors */
.text-red {
color: red;
}
.text-green {
color: green;
}
.text-blue {
color: blue;
}
/* Typography */
h1 {
font-size: 30px;
}
然后当我折叠它时,它看起来像这样:
/* Text Colors */
[...]
/* Typography */
h1 {
font-size: 30px;
}
这样我可以同时查看代码中各部分的外观。我试过使用foldSelectedLines
,但不幸的是最终折叠成这样:
/* Text Colors */
.text-red {[...]
/* Typography */
h1 {
font-size: 30px;
}