summaryrefslogtreecommitdiffstats
path: root/src/commands/mod.rs
blob: 0f821bd0218a8ae8e84560f69f4cd12431a26424 (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
30
31
32
33
34
35
36
37
pub mod bookmark;
pub mod bulk_rename;
pub mod change_directory;
pub mod command_line;
pub mod cursor_move;
pub mod delete_files;
pub mod escape;
pub mod file_ops;
pub mod filter;
pub mod flat;
pub mod line_nums;
pub mod linemode;
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 select;
pub mod set_mode;
pub mod show_help;
pub mod show_hidden;
pub mod show_tasks;
pub mod sort;
pub mod sub_process;
pub mod subdir_fzf;
pub mod tab_bar_mode;
pub mod tab_ops;
pub mod touch_file;
pub mod uimodes;
pub mod zoxide;