回答:
空白を表示するには、設定は次のとおりです。
// Set to "none" to turn off drawing white space, "selection" to draw only the
// white space within the selection, and "all" to draw all white space
"draw_white_space": "selection",
Preferences-> Settings Defaultに行くとそれを見ることができます。ユーザー設定を編集して(設定->設定-ユーザー)、以下のように行を追加すると、必要なものが得られます。
{
"color_scheme": "Packages/Color Scheme - Default/Slush & Poppies.tmTheme",
"font_size": 10,
"draw_white_space": "all"
}
設定はJSONであるため、末尾にコンマを付けないでください。
選択したテキストでは、スペースはドット(。)として、タブはダッシュ(-)として表示されます。
'"translate_tabs_to_spaces": true'
もちろん、
空白の表示のオンとオフを切り替えられるようにしたい場合は、HighlightWhitespacesプラグインをインストールできます
これはその方法の公式チュートリアルです!
http://sublimetexttips.com/show-whitespace-sublime-text/
ちょうどこのような!
あなたの助けを願っています!
http://sublimetexttips.com/show-whitespace-sublime-text/
Ctrl+ Shift+P
設定:設定–>ユーザー
{
"draw_white_space": "all",
"translate_tabs_to_spaces": true
}
私はいくつかのプラグイン(Unicode Character Highlighterを含む)を持っていますが、今日私から隠れている文字を見つけたのはHighlighterだけでした。
readmeのテキストを貼り付けることで、機能しているかどうかをテストできます。
参考までに、困ったキャラはでした
。
健全性を確認するには、非表示の文字を含むテキストの範囲で右矢印キーをタップします。文字を通過するには、右矢印を2回押す必要があります。
次のカスタム正規表現文字列も使用しています(完全には理解していません)。
{
// there's an extra range in use [^\\x00-\\x7F]
// also, don't highlight spaces at the end of the line (my settings take care of that)
"highlighter_regex": "(\t+ +)|( +\t+)|[^\\x00-\\x7F]|[\u2026\u2018\u2019\u201c\u201d\u2013\u2014]"
}
xxd
と入力し、文字列を貼り付けます