为sublimetext获取HTMLPrettify以在上一个右括号之前添加选项卡?

时间:2014-02-23 07:44:33

标签: sublimetext2

我正在使用Sublime-HTMLPrettify

但我喜欢我的代码

function my(way) {
    //code
    } // last bracket inline with the inside code

而不是传统的

function default(way) {
    //code
} // last bracket inline with the function declaration

因为折叠时会离开最后一个支架

我可以通过任何方式让Prettify在最后一个结束括号之前添加一个额外的标签吗?

1 个答案:

答案 0 :(得分:0)

想出一个黑客,添加空格

output_lines[output_lines.length - 1].text.push('    ');

之前

print_token();

handle_end_block()函数内的:1174