Basic cursor blinking :)

This commit is contained in:
Mikayla Maki 2022-08-15 17:00:44 -07:00
parent a24e5b128c
commit 7b3a7727c6
3 changed files with 123 additions and 38 deletions

View file

@ -287,6 +287,7 @@ impl TerminalBuilder {
setup_env(&config);
//Spawn a task so the Alacritty EventLoop can communicate with us in a view context
//TODO: Remove with a bounded sender which can be dispatched on &self
let (events_tx, events_rx) = unbounded();
//Set up the terminal...
let term = Term::new(&config, &initial_size, ZedListener(events_tx.clone()));