-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathKey Bindings.json
42 lines (42 loc) · 2.43 KB
/
Key Bindings.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
30
31
32
33
34
35
36
37
38
39
40
41
42
[
{ "keys": ["Down"], "command": "move_cursor_down" },
{ "keys": ["Num+Down"], "command": "move_cursor_down" },
{ "keys": ["Shift+Down"], "command": "move_cursor_down", "args": {"toggle_selection": true} },
{ "keys": ["Up"], "command": "move_cursor_up" },
{ "keys": ["Num+Up"], "command": "move_cursor_up" },
{ "keys": ["Shift+Up"], "command": "move_cursor_up", "args": {"toggle_selection": true} },
{ "keys": ["Home"], "command": "move_cursor_home" },
{ "keys": ["Num+Home"], "command": "move_cursor_home" },
{ "keys": ["Shift+Home"], "command": "move_cursor_home", "args": {"toggle_selection": true} },
{ "keys": ["End"], "command": "move_cursor_end" },
{ "keys": ["Num+End"], "command": "move_cursor_end" },
{ "keys": ["Shift+End"], "command": "move_cursor_end", "args": {"toggle_selection": true} },
{ "keys": ["PgDown"], "command": "move_cursor_page_down" },
{ "keys": ["Num+PgDown"], "command": "move_cursor_page_down" },
{ "keys": ["Shift+PgDown"], "command": "move_cursor_page_down", "args": {"toggle_selection": true} },
{ "keys": ["PgUp"], "command": "move_cursor_page_up" },
{ "keys": ["Num+PgUp"], "command": "move_cursor_page_up" },
{ "keys": ["Shift+PgUp"], "command": "move_cursor_page_up", "args": {"toggle_selection": true} },
{ "keys": ["Space"], "command": "toggle_selection" },
{ "keys": ["Tab"], "command": "switch_panes" },
{ "keys": ["Backspace"], "command": "go_up" },
{ "keys": ["Enter"], "command": "open" },
{ "keys": ["F1"], "command": "help" },
{ "keys": ["F4"], "command": "open_with_editor" },
{ "keys": ["Shift+F4"], "command": "create_and_edit_file" },
{ "keys": ["F5"], "command": "copy" },
{ "keys": ["Shift+F5"], "command": "symlink" },
{ "keys": ["Shift+F6"], "command": "rename" },
{ "keys": ["F6"], "command": "move" },
{ "keys": ["F7"], "command": "create_directory" },
{ "keys": ["F8"], "command": "move_to_trash" },
{ "keys": ["Delete"], "command": "move_to_trash" },
{ "keys": ["Num+Delete"], "command": "move_to_trash" },
{ "keys": ["F9"], "command": "open_terminal" },
{ "keys": ["F10"], "command": "open_native_file_manager" },
{ "keys": ["F11"], "command": "copy_paths_to_clipboard" },
{ "keys": ["Shift+Delete"], "command": "delete_permanently" },
{ "keys": ["Alt+F1"], "command": "show_volumes", "args": {"pane_index": 0} },
{ "keys": ["Alt+F2"], "command": "show_volumes", "args": {"pane_index": 1} },
{ "keys": ["Num+Insert"], "command": "move_cursor_down", "args": {"toggle_selection": true} }
]