0

二重引用符の自動ペアリングは、私が解決したと思っていたが、まだ残っている本当に奇妙な問題です。問題は、拡張子が .php、.html のファイルの場合、自動ペア化された二重引用符のデフォルトのフォント スタイルが解析できないことです。<div>私が言いたいことを示すために、左側の二重引用符のフォント スタイルに注目してください。一方、.js ファイルと .css ファイルの場合、二重引用符の自動ペアリングには<div>、右側の に示すように適切なフォント スタイルがあります。

これはどこかの設定に違いないのですが、Sublime Text2 (Mac OSX) はよくわかりません。考え?

ここに画像の説明を入力

4

1 に答える 1

0

@JamieJag の大きな助けを借りて、問題を特定しました。Shift+" は、PHP または HTML コードの一部として解析可能な二重引用符ではなく、 Sublime が「誤字」引用符と呼ぶものを生成していました。

この問題を解決するために、SublimeText2 の設定 -> キー バインド -> ユーザーのすべてをコメントアウトしました。

これらの JSON オブジェクトの 1 つまたはすべてが問題のある動作の原因であるかどうかは不明ですが (最初の JSON が違反者のように見えると思いますが)、これまでのところ、配列全体をコメントアウトするだけで問題が解決しました。

/*[

// Auto-pair typographical quotes
{ "keys": ["\""], "command": "insert_snippet", "args": {"contents": "“$0”"}, "context":
   [
      { "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
      { "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
      { "key": "following_text", "operator": "regex_contains", "operand": "^(?:\t| |\\)|”|;|\\}|$)", "match_all": true },
      { "key": "selector", "operator": "equal", "operand": "text", "match_all": true }
   ]
},
{ "keys": ["\""], "command": "insert_snippet", "args": {"contents": "“${0:$SELECTION}”"}, "context":
   [
      { "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
      { "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true },
      { "key": "selector", "operator": "equal", "operand": "text", "match_all": true }
   ]
},
{ "keys": ["\""], "command": "move", "args": {"by": "characters", "forward": true}, "context":
   [
      { "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
      { "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
      { "key": "following_text", "operator": "regex_contains", "operand": "^\\”", "match_all": true },
      { "key": "selector", "operator": "equal", "operand": "text", "match_all": true }
   ]
},
// Smart quotes before & after word
{ "keys": ["\""], "command": "insert_snippet", "args": {"contents": "“$0"}, "context":
   [
      { "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
      { "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
      { "key": "following_text", "operator": "regex_contains", "operand": "^\\S", "match_all": true },
      { "key": "selector", "operator": "equal", "operand": "text", "match_all": true }
   ]
},
{ "keys": ["\""], "command": "insert_snippet", "args": {"contents": "”$0"}, "context":
   [
      { "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
      { "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
      { "key": "preceding_text", "operator": "regex_contains", "operand": "^\\S", "match_all": true },
      { "key": "selector", "operator": "equal", "operand": "text", "match_all": true }
   ]
}

]*/
于 2013-02-22T20:02:27.730 に答える