Switched to windows environment from OSX.
Most important for me is…
- Making Ctrl+T the “goto” hotkey
- Making Ctrl+g the “find next” hokey
- Making Ctrl+shift+g the “find prev” hotkey
- Making Ctrl+1~0 the “go to specific tab” hotkey
[
{ "keys": ["ctrl+t"], "command": "show_overlay", "args": {"overlay": "goto"} },
{ "keys": ["ctrl+g"], "command": "find_prev" },
{ "keys": ["ctrl+shift+g"], "command": "find_under" },
{ "keys": ["ctrl+1"], "command": "select_by_index", "args": { "index": 0 } },
{ "keys": ["ctrl+2"], "command": "select_by_index", "args": { "index": 1 } },
{ "keys": ["ctrl+3"], "command": "select_by_index", "args": { "index": 2 } },
{ "keys": ["ctrl+4"], "command": "select_by_index", "args": { "index": 3 } },
{ "keys": ["ctrl+5"], "command": "select_by_index", "args": { "index": 4 } },
{ "keys": ["ctrl+6"], "command": "select_by_index", "args": { "index": 5 } },
{ "keys": ["ctrl+7"], "command": "select_by_index", "args": { "index": 6 } },
{ "keys": ["ctrl+8"], "command": "select_by_index", "args": { "index": 7 } },
{ "keys": ["ctrl+9"], "command": "select_by_index", "args": { "index": 8 } },
{ "keys": ["ctrl+0"], "command": "select_by_index", "args": { "index": 9 } }
]