崇高な2では、私は文書全体の再インデントとこの機能にキーを割り当てる方法を知っていますが、前後に空白が追加されたWebStormのように再インデントしたいa(=)またはその前後にa(:)。例については画像を見てください。どのように私は崇高な時にこれを行うことができますか?崇高なテキストでの美しさの仕方2
1
A
答えて
1
用途:
HTML-CSS-JS 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もテストしましたが、どちらも対応していません。
0
関連する問題
- 1. 崇高なテキスト2のコードスニペット
- 2. 崇高なテキスト2 uiライブラリ
- 3. 崇高なテキスト2 - jsonフォーマッター
- 4. 崇高なテキスト2とMinGW
- 5. 崇高なテキスト2とR
- 6. 崇高なテキストでのチタン開発2
- 7. 崇高なテキスト2 - リモートホストでの作業
- 8. 何崇高テキスト2
- 9. 崇高なテキストの正規表現は、崇高なテキストで
- 10. 崇高なテキスト2は、sshfsを介して仕事中に遅いです
- 11. 崇高なテキスト2:サイドバーのリモートSFTPブラウジング
- 12. 崇高なテキスト2 - オープン最近のキーバインディング?
- 13. 崇高なテキスト2コードの書式
- 14. 崇高なテキスト2画像プレビューのプラグイン
- 15. 崇高なテキスト2 HTML5構文のハイライト
- 16. 崇高なテキスト2とカルマの融合
- 17. 崇高なテキスト
- 18. 崇高なテキストを編集する場所js美化設定?
- 19. 崇高テキスト2> IndentationError <
- 20. 崇高テキスト2 - OS Xコマンドライン
- 21. コンパスエラー:崇高なテキスト
- 22. 崇高なテキスト2 tail -f in windows
- 23. 崇高なテキスト2検索は
- 24. eclipse複数のテキスト選択のような崇高なテキスト2
- 25. 崇高なテキストのサラスコンパイラ3
- 26. 崇高なテキストの変更テキストの色
- 27. 崇高テキスト2 - オートコンプリート/他のファイルから
- 28. 崇高テキスト2つの補完
- 29. 崇高テキスト2マウスフリーのオープニングファイルが
- 30. 崇高なテキストでコンソールに行を渡す方法2エディタ
ありがとうございます@Enteleform。 HTMLPrettifyはまさに私が望むものです。引用符の中にカンマを入れずに暮らすことができます。大いに感謝する。 –