|
1 | 1 | # Here is global, all global key cant conflicts with other hotkeys
|
2 |
| -quit = ["esc", "q"] |
3 |
| - |
4 |
| -list_up = ["up", "k"] |
5 |
| -list_down = ["down", "j"] |
6 |
| - |
7 |
| -pinned_directory = ["ctrl+p", ""] |
8 |
| - |
9 |
| -close_file_panel = ["ctrl+w", ""] |
10 |
| -create_new_file_panel = ["ctrl+n", ""] |
11 |
| - |
12 |
| -next_file_panel = ["tab", "L"] |
13 |
| -previous_file_panel = ["shift+left", "H"] |
14 |
| -focus_on_process_bar = ["p", ""] |
15 |
| -focus_on_side_bar = ["b", ""] |
16 |
| -focus_on_meta_data = ["m", ""] |
17 |
| - |
18 |
| -change_panel_mode = ["v", ""] |
19 |
| - |
20 |
| -file_panel_directory_create = ["f", ""] |
21 |
| -file_panel_file_create = ["c", ""] |
22 |
| -file_panel_item_rename = ["r", ""] |
23 |
| -paste_item = ["ctrl+v", ""] |
24 |
| -extract_file = ["ctrl+e", ""] |
25 |
| -compress_file = ["ctrl+r", ""] |
26 |
| - |
27 |
| -oepn_file_with_editor = ["e", ""] |
28 |
| -open_current_directory_with_editor = ["E", ""] |
29 |
| - |
30 |
| -toggle_dot_file = ["ctrl+h", ""] |
31 |
| - |
| 2 | +quit = ['esc', 'q'] |
| 3 | +# |
| 4 | +list_up = ['up', 'k'] |
| 5 | +list_down = ['down', 'j'] |
| 6 | +# |
| 7 | +pinned_directory = ['ctrl+p', ''] |
| 8 | +# |
| 9 | +close_file_panel = ['ctrl+w', ''] |
| 10 | +create_new_file_panel = ['ctrl+n', ''] |
| 11 | +# |
| 12 | +next_file_panel = ['tab', 'L'] |
| 13 | +previous_file_panel = ['shift+left', 'H'] |
| 14 | +focus_on_process_bar = ['p', ''] |
| 15 | +focus_on_side_bar = ['b', ''] |
| 16 | +focus_on_meta_data = ['m', ''] |
| 17 | +# |
| 18 | +change_panel_mode = ['v', ''] |
| 19 | +# |
| 20 | +file_panel_directory_create = ['f', ''] |
| 21 | +file_panel_file_create = ['c', ''] |
| 22 | +file_panel_item_rename = ['r', ''] |
| 23 | +paste_item = ['ctrl+v', ''] |
| 24 | +extract_file = ['ctrl+e', ''] |
| 25 | +compress_file = ['ctrl+r', ''] |
| 26 | +toggle_dot_file = ['ctrl+h', ''] |
| 27 | +# |
| 28 | +oepn_file_with_editor = ['e', ''] |
| 29 | +open_current_directory_with_editor = ['E', ''] |
| 30 | +# |
32 | 31 | # These hotkeys do not conflict with any other keys (including global hotkey)
|
33 |
| -cancel = ["ctrl+c", "esc"] |
34 |
| -confirm = ["enter", ""] |
35 |
| - |
| 32 | +cancel = ['ctrl+c', 'esc'] |
| 33 | +confirm = ['enter', ''] |
| 34 | +# |
36 | 35 | # Here is normal mode hotkey you can conflicts with other mode (cant conflicts with global hotkey)
|
37 |
| -delete_item = ["ctrl+d", ""] |
38 |
| -select_item = ["enter", "l"] |
39 |
| -parent_directory = ["h", "backspace"] |
40 |
| -copy_single_item = ["ctrl+c", ""] |
41 |
| -cut_single_item = ["ctrl+x", ""] |
42 |
| -search_bar = ["ctrl+f", ""] |
43 |
| - |
| 36 | +delete_item = ['ctrl+d', ''] |
| 37 | +select_item = ['enter', 'l'] |
| 38 | +parent_directory = ['h', 'backspace'] |
| 39 | +copy_single_item = ['ctrl+c', ''] |
| 40 | +cut_single_item = ['ctrl+x', ''] |
| 41 | +search_bar = ['ctrl+f', ''] |
| 42 | +# |
44 | 43 | # Here is select mode hotkey you can conflicts with other mode (cant conflicts with global hotkey)
|
45 |
| -file_panel_select_mode_item_single_select = ["enter", "l"] |
46 |
| -file_panel_select_mode_item_select_down = ["shift+down", "J"] |
47 |
| -file_panel_select_mode_item_select_up = ["shift+up", "K"] |
48 |
| -file_panel_select_mode_item_delete = ["ctrl+d", "delete"] |
49 |
| -file_panel_select_mode_item_copy = ["ctrl+c", ""] |
50 |
| -file_panel_select_mode_item_cut = ["ctrl+x", ""] |
51 |
| -file_panel_select_all_item = ["ctrl+a", ""] |
| 44 | +file_panel_select_mode_item_single_select = ['enter', 'l'] |
| 45 | +file_panel_select_mode_item_select_down = ['shift+down', 'J'] |
| 46 | +file_panel_select_mode_item_select_up = ['shift+up', 'K'] |
| 47 | +file_panel_select_mode_item_delete = ['ctrl+d', 'delete'] |
| 48 | +file_panel_select_mode_item_copy = ['ctrl+c', ''] |
| 49 | +file_panel_select_mode_item_cut = ['ctrl+x', ''] |
| 50 | +file_panel_select_all_item = ['ctrl+a', ''] |
0 commit comments