summaryrefslogtreecommitdiffstats
path: root/src/verb/mod.rs
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2020-05-01 14:01:02 +0200
committerCanop <cano.petrole@gmail.com>2020-05-01 21:31:53 +0200
commit0199162bc8d4fee5bb7f07fbb41570df95205057 (patch)
tree74c6bb798700b7dc7cc21c0173319f6ee51ba02c /src/verb/mod.rs
parentcf52bbe7dc19cba78d65f431caa2af36c23da589 (diff)
command/verb/apply refactoring
* simpler, with immutable commands * more commands can be triggered by shortcuts * one can apply verbs to the input (using shortcuts)
Diffstat (limited to 'src/verb/mod.rs')
-rw-r--r--src/verb/mod.rs10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/verb/mod.rs b/src/verb/mod.rs
index bcafb5a..cd2a121 100644
--- a/src/verb/mod.rs
+++ b/src/verb/mod.rs
@@ -1,12 +1,8 @@
-
-
mod builtin;
mod cd;
-mod executor;
mod external;
mod external_execution_mode;
mod internal;
-mod path;
mod verb;
mod verb_conf;
mod verb_execution;
@@ -15,7 +11,6 @@ mod verb_store;
pub use {
cd::CD,
- executor::VerbExecutor,
external::External,
external_execution_mode::ExternalExecutionMode,
internal::Internal,
@@ -23,8 +18,5 @@ pub use {
verb_conf::VerbConf,
verb_execution::VerbExecution,
verb_invocation::VerbInvocation,
- verb_store::{
- PrefixSearchResult,
- VerbStore,
- },
+ verb_store::{PrefixSearchResult, VerbStore},
};