-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathKey Bindings (Mac).json
29 lines (29 loc) · 1.49 KB
/
Key Bindings (Mac).json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[
{ "keys": ["Alt+Right"], "command": "open_in_right_pane" },
{ "keys": ["Alt+Left"], "command": "open_in_left_pane" },
{ "keys": ["Cmd+C"], "command": "copy_to_clipboard" },
{ "keys": ["Cmd+X"], "command": "cut" },
{ "keys": ["Cmd+V"], "command": "paste" },
{ "keys": ["Cmd+Alt+V"], "command": "paste_cut" },
{ "keys": ["Cmd+A"], "command": "select_all" },
{ "keys": ["Cmd+D"], "command": "deselect" },
{ "keys": ["Space"], "command": "move_cursor_down", "args": {"toggle_selection": true} },
{ "keys": ["Cmd+Backspace"], "command": "move_to_trash" },
{ "keys": ["Cmd+."], "command": "toggle_hidden_files" },
{ "keys": ["Cmd+P"], "command": "go_to" },
{ "keys": ["Cmd+Shift+P"], "command": "command_palette" },
{ "keys": ["Cmd+Left"], "command": "go_back" },
{ "keys": ["Cmd+Right"], "command": "go_forward" },
{ "keys": ["Cmd+I"], "command": "get_info" },
{ "keys": ["Cmd+F5"], "command": "pack" },
{ "keys": ["Cmd+R"], "command": "reload" },
{ "keys": ["Cmd+F1"], "command": "sort_by_column", "args": {"column_index": 0}},
{ "keys": ["Cmd+F2"], "command": "sort_by_column", "args": {"column_index": 1}},
{ "keys": ["Cmd+F3"], "command": "sort_by_column", "args": {"column_index": 2}},
{ "keys": ["Cmd+M"], "command": "minimize" },
{ "keys": ["Cmd+Q"], "command": "quit" },
{ "keys": ["Cmd+Up"], "command": "go_up" },
{ "keys": ["Shift+Space"], "command": "quick_look" },
{ "keys": ["Cmd+Enter"], "command": "open_selected_files" },
{ "keys": ["Cmd+Ctrl+F"], "command": "toggle_fullscreen" }
]