SublimeTextでカッコの外にジャンプするキーボードショートカット

下書きのまま眠ってた...

eclipseだと()の中から外へtabを使えば移動できるけど、
SublimteTextではtabを押しても()の外へ移動できない。

そこで移動する方法を調べてみたところ、
以下の設定をKey Bindings -Userに以下の設定を追加することで
()の外へキーボードショートカットで移動できるようになったのでメモ。

// shift + tabで()の外に移動
{
    "keys": ["shift+tab"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
    [
        { "key": "following_text", "operator": "regex_contains", "operand": "^[)'\"\\]]", "match_all": true },
        { "key": "auto_complete_visible", "operator": "equal", "operand": false }
    ]
}

でも家のmacには設定を入れていない...