Skip to content

Commit a2b1a56

Browse files
committed
Prepare to release
1 parent 1bb15bd commit a2b1a56

File tree

3 files changed

+53
-54
lines changed

3 files changed

+53
-54
lines changed

src/components/default_config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ footer_panel_list = ['processessssssssssss', 'metadata', 'clipboard']
6161
# ==========PLUGINS========== #
6262
#
6363
# Show more detailed metadata, please install exiftool before enabling this plugin!
64-
metadata = true
64+
metadata = false
6565
`

src/superfile/config.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# change your theme
2-
theme = "catpuccin"
3-
2+
theme = 'catpuccin'
3+
#
44
# useless for now
5-
footer_panel_list = ["processes", "metadata", "clipboard"]
6-
5+
footer_panel_list = ['processessssssssssss', 'metadata', 'clipboard']
6+
#
77
# ==========PLUGINS========== #
8-
8+
#
99
# Show more detailed metadata, please install exiftool before enabling this plugin!
10-
metadata = false
10+
metadata = false

src/superfile/hotkeys.toml

Lines changed: 46 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,50 @@
11
# 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+
#
3231
# 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+
#
3635
# 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+
#
4443
# 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

Comments
 (0)