summaryrefslogtreecommitdiffstats
path: root/src/verb_conf.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_conf.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_conf.rs')
-rw-r--r--src/verb_conf.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/verb_conf.rs b/src/verb_conf.rs
deleted file mode 100644
index d5b63cb..0000000
--- a/src/verb_conf.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-use crossterm::event::KeyEvent;
-
-/// what's needed to handle a verb
-#[derive(Debug)]
-pub struct VerbConf {
- pub shortcut: Option<String>,
- pub invocation: String,
- pub key: Option<KeyEvent>,
- pub execution: String,
- pub description: Option<String>,
- pub from_shell: Option<bool>,
- pub leave_broot: Option<bool>,
- pub confirm: Option<bool>,
-}
-