summaryrefslogtreecommitdiffstats
path: root/src/commands/rename_file.rs
diff options
context:
space:
mode:
authorJiayi Zhao <jeff.no.zhao@gmail.com>2020-02-16 15:45:05 -0500
committerJiayi Zhao <jeff.no.zhao@gmail.com>2020-02-16 15:50:25 -0500
commit98d0ce7e70f9febf804cda7473f5e9f7f180fe91 (patch)
treec8c8dd60d9e6502202b910e64f79cd75b933d05d /src/commands/rename_file.rs
parentd788f8d740be85bb014ddfa005156723f0a31e99 (diff)
remove ncurses dependency
- clean up code - update theme config - fix localstate tracking file selection not selecting proper files
Diffstat (limited to 'src/commands/rename_file.rs')
-rw-r--r--src/commands/rename_file.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/commands/rename_file.rs b/src/commands/rename_file.rs
index fd43e6d..ad2441c 100644
--- a/src/commands/rename_file.rs
+++ b/src/commands/rename_file.rs
@@ -58,7 +58,6 @@ impl JoshutoRunnable for RenameFile {
if let Some(path) = path {
self.rename_file(&path, context, backend)?;
- ncurses::doupdate();
}
Ok(())
}
@@ -113,7 +112,6 @@ impl JoshutoRunnable for RenameFileAppend {
if let Some(file_name) = file_name {
self.rename_file(context, backend, file_name)?;
- ncurses::doupdate();
}
Ok(())
}
@@ -161,7 +159,6 @@ impl JoshutoRunnable for RenameFilePrepend {
if let Some(file_name) = file_name {
self.rename_file(context, backend, file_name)?;
- ncurses::doupdate();
}
Ok(())
}