From 65006271ed71fc79ef7d4582b5a676029bf3f65b Mon Sep 17 00:00:00 2001 From: Jeff Zhao Date: Sat, 2 Oct 2021 17:24:16 -0400 Subject: move key_command code out into separate module - make separate files for trait impls - make separate file for constants --- src/config/keymap/keymapping.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/config/keymap/keymapping.rs') diff --git a/src/config/keymap/keymapping.rs b/src/config/keymap/keymapping.rs index 071bdf7..6cb682f 100644 --- a/src/config/keymap/keymapping.rs +++ b/src/config/keymap/keymapping.rs @@ -7,9 +7,9 @@ use std::str::FromStr; use termion::event::MouseEvent; use termion::event::{Event, Key}; -use crate::commands::{CommandKeybind, KeyCommand}; use crate::config::{parse_to_config_file, ConfigStructure, Flattenable}; use crate::io::IoWorkerOptions; +use crate::key_command::{CommandKeybind, KeyCommand}; use crate::util::keyparse::str_to_event; #[derive(Debug, Deserialize)] -- cgit v1.2.3