概要
Ctrl + 0
サイドバーに移動します。デフォルトでは、矢印キーでフォルダーをナビゲートできます。「Vim」タイプの設定を好む場合は、キーを典型的な Vim 設定 (hjkl) に再マッピングすることで、矢印キーの使用を避けることができます。
- hフォルダーを最小化/開きます
- jは下に移動します(つまり、下矢印)
- kは上に移動します(つまり、上矢印)
- フォルダを開きます
- Enterでファイルが開きます
キー マッピング
これを設定Preferences > Key Bindings - User
するには、以下を開いて追加します。
{ "keys": ["h"], "command": "move", "args": {"by": "characters", "forward": false}, "context":
[ {"key": "control", "operand": "sidebar_tree"} ] },
{ "keys": ["j"], "command": "move", "args": {"by": "lines", "forward": true}, "context":
[ {"key": "control", "operand": "sidebar_tree"} ] },
{ "keys": ["k"], "command": "move", "args": {"by": "lines", "forward": false}, "context":
[ {"key": "control", "operand": "sidebar_tree"} ] },
{ "keys": ["l"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
[ {"key": "control", "operand": "sidebar_tree"} ] }