summaryrefslogtreecommitdiffstats
path: root/src/commands/command_line.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/command_line.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/command_line.rs')
-rw-r--r--src/commands/command_line.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/commands/command_line.rs b/src/commands/command_line.rs
index 1ca2c14..5795e5d 100644
--- a/src/commands/command_line.rs
+++ b/src/commands/command_line.rs
@@ -56,7 +56,6 @@ impl std::fmt::Display for CommandLine {
impl JoshutoRunnable for CommandLine {
fn execute(&self, context: &mut JoshutoContext, backend: &mut TuiBackend) -> JoshutoResult<()> {
let res = self.readline(context, backend);
- ncurses::doupdate();
res
}
}