summaryrefslogtreecommitdiffstats
path: root/src/commands/mod.rs
blob: d01c3e305228572806a217f10633b85fddb322f3 (plain)
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
pub mod bulk_rename;
pub mod change_directory;
pub mod command_line;
pub mod cursor_move;
pub mod delete_files;
pub mod file_ops;
pub mod help;
pub mod line_nums;
pub mod new_directory;
pub mod numbered_command;
pub mod open_file;
pub mod parent_cursor_move;
pub mod preview_cursor_move;
pub mod quit;
pub mod reload;
pub mod rename_file;
pub mod search;
pub mod search_fzf;
pub mod search_glob;
pub mod search_string;
pub mod selection;
pub mod set_mode;
pub mod show_hidden;
pub mod show_workers;
pub mod sort;
pub mod sub_process;
pub mod subdir_fzf;
pub mod tab_ops;
pub mod touch_file;