aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authoronielfa <[email protected]>2020-07-30 23:01:03 +0100
committeronielfa <[email protected]>2020-07-30 23:01:03 +0100
commite794c6ecf133df248471b465a7553d454b527399 (patch)
tree0fb5b4cbce0ccb979e438ee8e2b7e2496da9963a /src/main.rs
parent7e44bbff6d7f572f5f92b3a6b0f1d5e523379ba4 (diff)
parent2dafbfe51b2b4ebafc21fe68a9b909ebe3a4e23b (diff)
Merge remote-tracking branch 'origin/master' into feature/larger-names
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/main.rs b/src/main.rs
index 609738e..84fd8ee 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -12,13 +12,7 @@ use crate::command::{open_command_window, Command};
12use crate::utils::{load_configuration_file, AppConfig}; 12use crate::utils::{load_configuration_file, AppConfig};
13 13
14use clap::{App as ClapApp, Arg}; 14use clap::{App as ClapApp, Arg};
15 15use cursive::pancurses;
16#[cfg(any(target_os = "linux", target_os = "macos"))]
17use cursive::termion;
18
19#[cfg(target_os = "windows")]
20use cursive::crossterm;
21
22use cursive::views::{LinearLayout, NamedView}; 16use cursive::views::{LinearLayout, NamedView};
23use lazy_static::lazy_static; 17use lazy_static::lazy_static;
24 18
@@ -68,11 +62,7 @@ fn main() {
68 println!("{}", h); 62 println!("{}", h);
69 } 63 }
70 } else { 64 } else {
71 #[cfg(target_os = "windows")] 65 let mut s = pancurses().unwrap();
72 let mut s = crossterm().unwrap();
73
74 #[cfg(any(target_os = "linux", target_os = "macos"))]
75 let mut s = termion().unwrap();
76 66
77 let app = App::load_state(); 67 let app = App::load_state();
78 let layout = NamedView::new( 68 let layout = NamedView::new(