[skip travis] More todos.
This commit is contained in:
parent
db06f8201f
commit
7ce653b8dc
4
TODO.md
4
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.
|
* 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!!!
|
* Efficiency!!!
|
||||||
|
|
||||||
* Filtering in processes (that is, allow searching)
|
* Filtering in processes (that is, allow searching)
|
||||||
|
|
|
@ -96,9 +96,7 @@ fn main() -> error::Result<()> {
|
||||||
let tx = tx.clone();
|
let tx = tx.clone();
|
||||||
thread::spawn(move || {
|
thread::spawn(move || {
|
||||||
let input = input();
|
let input = input();
|
||||||
if cfg!(target_os = "linux") {
|
input.enable_mouse_mode().unwrap();
|
||||||
input.enable_mouse_mode().unwrap();
|
|
||||||
}
|
|
||||||
let reader = input.read_sync();
|
let reader = input.read_sync();
|
||||||
for event in reader {
|
for event in reader {
|
||||||
match event {
|
match event {
|
||||||
|
|
Loading…
Reference in New Issue