summaryrefslogtreecommitdiffstats
path: root/src/commands
diff options
context:
space:
mode:
authorJeff Zhao <jeff.no.zhao@gmail.com>2022-08-29 12:36:31 -0400
committerJeff Zhao <jeff.no.zhao@gmail.com>2022-08-29 12:36:31 -0400
commit9f5e6e0dbf239cdb08a7974147d0fa3f8183e364 (patch)
tree9fff4c76c9fbd1785ba06d82cfbe1db760f11947 /src/commands
parentedf620b4aceaaadffedd14d85d120d485a6ad8f3 (diff)
add lazy static initalizations to make sure configs are initialized at the right time
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/mod.rs2
-rw-r--r--src/commands/select.rs (renamed from src/commands/selection.rs)0
2 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index f4e0ee5..4f270ea 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -18,7 +18,7 @@ pub mod search;
pub mod search_fzf;
pub mod search_glob;
pub mod search_string;
-pub mod selection;
+pub mod select;
pub mod set_mode;
pub mod show_help;
pub mod show_hidden;
diff --git a/src/commands/selection.rs b/src/commands/select.rs
index a4d26c4..a4d26c4 100644
--- a/src/commands/selection.rs
+++ b/src/commands/select.rs