summaryrefslogtreecommitdiffstats
path: root/src/key_command/command_keybind.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/key_command/command_keybind.rs')
-rw-r--r--src/key_command/command_keybind.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/key_command/command_keybind.rs b/src/key_command/command_keybind.rs
index e989644..bd58b18 100644
--- a/src/key_command/command_keybind.rs
+++ b/src/key_command/command_keybind.rs
@@ -1,11 +1,10 @@
-use crate::config::AppKeyMapping;
-
-use super::Command;
+use crate::config::KeyMapping;
+use crate::key_command::Command;
#[derive(Debug)]
pub enum CommandKeybind {
SimpleKeybind(Command),
- CompositeKeybind(AppKeyMapping),
+ CompositeKeybind(KeyMapping),
}
impl std::fmt::Display for CommandKeybind {