summaryrefslogtreecommitdiffstats
path: root/src/joshuto/command/file_operation.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/joshuto/command/file_operation.rs')
-rw-r--r--src/joshuto/command/file_operation.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/joshuto/command/file_operation.rs b/src/joshuto/command/file_operation.rs
index 3a9bc85..4f2d534 100644
--- a/src/joshuto/command/file_operation.rs
+++ b/src/joshuto/command/file_operation.rs
@@ -11,12 +11,11 @@ use std::thread;
use joshuto;
use joshuto::command;
+use joshuto::keymap;
use joshuto::structs;
use joshuto::ui;
use joshuto::window;
-use joshuto::keymapll::Keycode;
-
lazy_static! {
static ref selected_files: sync::Mutex<Vec<path::PathBuf>> = sync::Mutex::new(vec![]);
static ref fileop: sync::Mutex<FileOp> = sync::Mutex::new(FileOp::Copy);
@@ -330,7 +329,7 @@ impl command::Runnable for DeleteFiles {
ncurses::doupdate();
let ch = ncurses::wgetch(context.views.bot_win.win);
- if ch == Keycode::LOWER_Y as i32 || ch == Keycode::ENTER as i32 {
+ if ch == 'y' as i32 || ch == keymap::ENTER as i32 {
if let Some(s) = context.curr_list.as_mut() {
if let Some(paths) = collect_selected_paths(s) {
Self::remove_files(paths, &context.views.bot_win);