[skip travis] More todos.

This commit is contained in:
ClementTsang 2019-09-17 00:26:49 -04:00
parent db06f8201f
commit 7ce653b8dc
2 changed files with 5 additions and 3 deletions

View File

@ -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)

View File

@ -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 {