在Sublime2中,我知道如何重新压缩整个文档,以及如何为此函数分配键,但我希望像在WebStorm中一样重新压缩,在WebStorm中,在a (=)前后或a (:)之前和之后添加空格。请查看图片中的示例。我如何在Sublime中做到这一点,或者什么软件包可以做到这一点?

发布于 2016-04-16 05:56:10
使用:

*您可以@调整以下设置:
Menu > Preferences > Package Settings > HTML/CSS/JS Prettify > Set Prettify Preferences"js": {
"allowed_file_extensions": ["js", "json", "jshintrc", "jsbeautifyrc"],
"brace_style": "collapse-preserve-inline",
// collapse: (old default) Put braces on the same line as control statements
// collapse-preserve-inline: (new default) Same as collapse but better support for ES6 destructuring and other features. https: //github.com/victorporof/Sublime-HTMLPrettify/issues/231
// expand: Put braces on own line (Allman / ANSI style)
// end-expand: Put end braces on own line
// none: Keep them where they are
"break_chained_methods": false, // Break chained method calls across subsequent lines
"e4x": false, // Pass E4X xml literals through untouched
"end_with_newline": false, // End output with newline
"indent_char": " ", // Indentation character
"indent_level": 0, // Initial indentation level
"indent_size": 2, // Indentation size
"indent_with_tabs": true, // Indent with tabs, overrides `indent_size` and `indent_char`
"jslint_happy": false, // If true, then jslint-stricter mode is enforced
"keep_array_indentation": false, // Preserve array indentation
"keep_function_indentation": false, // Preserve function indentation
"max_preserve_newlines": 0, // Maximum number of line breaks to be preserved in one chunk (0 disables)
"preserve_newlines": true, // Whether existing line breaks should be preserved
"space_after_anon_function": false, // Should the space before an anonymous function's parens be added, "function()" vs "function ()"
"space_before_conditional": true, // Should the space before conditional statement be added, "if(true)" vs "if (true)"
"space_in_empty_paren": false, // Add padding spaces within empty paren, "f()" vs "f( )"
"space_in_paren": false, // Add padding spaces within paren, ie. f( a, b )
"unescape_strings": false, // Should printable characters in strings encoded in \xNN notation be unescaped, "example" vs "\x65\x78\x61\x6d\x70\x6c\x65"
"wrap_line_length": 0 // Lines should wrap at next opportunity after this number of characters (0 disables)
}注意:
它不处理引号中的逗号。
我还测试了,它也不处理它们。
发布于 2016-04-16 02:50:19
你应该看看Will Bond的插件,它可以做你想做的大部分事情,而且它也是非常可配置的。packagecontrol.io和wbond.net之间的文档和循环链接似乎有问题,但here是存储在Wayback Machine中的文档。
https://stackoverflow.com/questions/36650819
复制相似问题