Atom editor ATOM编辑器:将多行CSS规则集折叠为单行

Atom editor ATOM编辑器:将多行CSS规则集折叠为单行,atom-editor,Atom Editor,在ATOM编辑器中,如何将多行CSS规则折叠为单行规则?我尝试过使用one-liner插件,但是这些组合键在Windows10上没有任何作用。我正在运行最新版本的ATOM编辑器 在记事本++中,TextFX插件使用TextFX->TextFX编辑->展开文本来完成此操作 例如: 未加工的 body { width: 100%; height: 100% } .a-n { height: 44px; overflow: hidden; position: r

在ATOM编辑器中,如何将多行CSS规则折叠为单行规则?我尝试过使用
one-liner
插件,但是这些组合键在Windows10上没有任何作用。我正在运行最新版本的ATOM编辑器

在记事本++中,
TextFX
插件使用
TextFX->TextFX编辑->展开文本来完成此操作

例如:

未加工的

body {
    width: 100%;
    height: 100%
}
.a-n {
    height: 44px;
    overflow: hidden;
    position: relative
}
崩溃了

body{width: 100%;height: 100%}

.a-n{height:44px;overflow:hidden;position:relative}

“编辑/行/连接行”或CTRL+J似乎可以做到这一点,不需要插件。