summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClementTsang <clementjhtsang@gmail.com>2019-09-17 00:26:49 -0400
committerClementTsang <clementjhtsang@gmail.com>2019-09-17 00:27:12 -0400
commit7ce653b8dcd1a17c46913d34f66595aac1929c02 (patch)
tree4bfe894e43cda5b3ad77410132913c48db66d39f
parentdb06f8201f9f0bdfe5b8dc5791a04e22cfd99381 (diff)
[skip travis] More todos.
-rw-r--r--TODO.md4
-rw-r--r--src/main.rs4
2 files changed, 5 insertions, 3 deletions
diff --git a/TODO.md b/TODO.md
index 411acf1a..0c617cae 100644
--- a/TODO.md
+++ b/TODO.md
@@ -48,6 +48,10 @@ Note this will probably migrate to GitHub's native Issues; this was mostly for p
* Test for Windows support, mac support, other. May be doable, depends on sysinfo and how much I know about other OSes probably.
+* Seems like the braille symbols are borked on windows.
+
+* Issue with typing after windows version runs!
+
* Efficiency!!!
* Filtering in processes (that is, allow searching)
diff --git a/src/main.rs b/src/main.rs
index caeb2c8c..0747fbd2 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -96,9 +96,7 @@ fn main() -> error::Result<()> {
let tx = tx.clone();
thread::spawn(move || {
let input = input();
- if cfg!(target_os = "linux") {
- input.enable_mouse_mode().unwrap();
- }
+ input.enable_mouse_mode().unwrap();
let reader = input.read_sync();
for event in reader {
match event {