This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fn main() -> Result<()> { | |
let mut out = stdout(); | |
terminal::enable_raw_mode()?; | |
execute!(out, EnableMouseCapture)?; | |
loop { | |
let ev_head = event::read()?; | |
if let Event::Mouse(MouseEvent { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This is useful only when you are inside your shell. If you are already connected to a zellij session, | |
# prefer using the zellij session manager. | |
# | |
# Requirements:- | |
# - zellij | |
# - fzf | |
# - Standard GNU utilities | |
# |