Resumo
Ctrl + 0
irá navegar para a barra lateral. Por padrão, você pode navegar pelas pastas com as teclas de seta. Se você preferir configurações do tipo 'Vim', evite usar as teclas de seta remapeando suas teclas para as configurações típicas do Vim (hjkl).
- h minimizará / abrirá uma pasta
- j navegará para baixo (isto é, seta para baixo)
- k irá navegar para cima (isto é, seta para cima)
- l vai abrir uma pasta
- Enter abrirá o arquivo
Mapeamentos principais
Para configurar isso, abra Preferences > Key Bindings - User
e adicione o seguinte:
{ "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"} ] }