summaryrefslogtreecommitdiffstats
path: root/src/verb/mod.rs
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2020-04-14 10:54:15 +0200
committerCanop <cano.petrole@gmail.com>2020-04-14 14:39:24 +0200
commit2e9fb3295d7ee797d01c1f573c15c9a7e915d9ae (patch)
tree4661c2ea4fb6cb19c753de531a41222da59d688a /src/verb/mod.rs
parenteef0c44dfc9a8d5ae121f9d97eee45cf494f34d2 (diff)
focus dir in new panel with tab
The new panels feature is still a work in progress. With this commit also comes the start of a big verb refactoring.
Diffstat (limited to 'src/verb/mod.rs')
-rw-r--r--src/verb/mod.rs23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/verb/mod.rs b/src/verb/mod.rs
new file mode 100644
index 0000000..cff53f8
--- /dev/null
+++ b/src/verb/mod.rs
@@ -0,0 +1,23 @@
+
+
+mod builtin;
+mod executor;
+mod internal;
+mod verb;
+mod verb_conf;
+mod verb_execution;
+mod verb_invocation;
+mod verb_store;
+
+pub use {
+ executor::VerbExecutor,
+ internal::Internal,
+ verb::Verb,
+ verb_conf::VerbConf,
+ verb_execution::VerbExecution,
+ verb_invocation::VerbInvocation,
+ verb_store::{
+ PrefixSearchResult,
+ VerbStore,
+ },
+};