我有一些sass生成的scss看起来像这样:
#a-selector {
declaration: big;
.nested-selector {
another-declaration } }
但我希望它看起来像标准,如下:
#a-selector {
declaration: big;
.nested-selector {
another-declaration
}
}
在vim中是否有办法将末端花括号移动到自己的行?这将使它更容易使用,并且还会使vim缩进工作更好一些。
答案 0 :(得分:1)
没有办法做到这一点,但如果它是计算机生成的,它的格式应该无关紧要。你可以实现一些 node.js 来做到这一点,但我认为这种情况没有必要。