1

簡単な質問です。Windows で Sublime Text 2 を使用してコーディングを始めたばかりで、if (i > 0) などの if ステートメントを書いているときのように、「0」を入力した直後にカーソルを変更したいと思います。は「0」と「)」の間なので、エンターを押すと「)」の後にジャンプしたいです。私は日食に慣れているので、日食の設定を模倣する設定を取得する方法を知りたいです。設定テキスト ファイルを編集しようとしましたが、探しているものが見つかりませんでした。

4

1 に答える 1

5

以下をユーザーキーバインディングに追加してみてください(からアクセス可能Preferences -> Key Bindings - User

{ "keys": ["enter"], "command": "move", "args": {"by": "characters", "forward": true},
  "context": [
    { "key": "selection_empty", "operator": "equal", "operand": true },
    { "key": "preceding_text", "operator": "not_regex_match", "operand": "[[:space:]]*", "match_all": true },
    { "key": "following_text", "operator": "regex_contains", "operand": "^[\\)]", "match_all": true },
    { "key": "auto_complete_visible", "operator": "equal", "operand": false }
]}

編集:括弧のみに一致するように正規表現を更新します。

于 2013-03-18T01:57:17.383 に答える