2016-04-15 71 views
1

在崇高2中,我知道如何重新整理整個文檔以及如何爲此函數指定一個鍵,但是我想要像在WebStorm中一樣重新添加空格,前後添加空格(=)或之前和之後(:)。觀看圖像的例子。我怎麼能在Sublime中做到這一點,或者這是什麼包?如何在崇高文本2中進行美化

Example of reindenting in WebStorm

回答

1

用途:

HTML-CSS-JS Prettify

 

Prettify


  您可以調整以下設置@:

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) 
} 

 


注:

它不引號內處理逗號。
我也測試了CoolFormat,它也不處理它​​們。

+1

謝謝@Enteleform。 HTMLPrettify正是我想要的。我可以在報價中不用逗號處理。萬分感謝。 –

0

你應該檢查將債券的Alignment插件,它應該做你最想要什麼,倒也可配置爲好。 packagecontrol.io和wbond.net之間的文檔和循環鏈接似乎存在問題,但here是存儲在Wayback Machine中的文檔。