12

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;
}
4

2 回答 2

24

CTRL- ALT-F在 Linux 和 Windows 上或CTRL-⌥</kbd>-⌘</kbd>-F on mac.

同样在 Atom press CTRL- SHIFT- P(或⌘</kbd>-SHIFT-P on mac) to open the command palette and type fold to get a list of all the possible fold options and related keyboard shortcuts.

于 2015-02-20T16:31:51.943 回答
3

我有同样的问题 - 我想像 Textmate 一样折叠任意选择。

对于 Mac 上的 Atom,至少 ctrl-option-command-F 有效!

于 2014-12-15T20:37:22.737 回答