feat: wire up keybinds

- added keybinds for existing file actions
- added keybinds to support zooming
This commit is contained in:
Stevan Freeborn
2026-01-10 08:02:21 -06:00
parent c2a9685b5b
commit 1704441315
2 changed files with 82 additions and 11 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ pub fn save_file_to_disk(path: PathBuf, text: String) {
let save_result = write(path, text);
match save_result {
Ok(_) => println!("Save file successfully"),
Ok(_) => {},
Err(err) => eprintln!("Error: {}", err),
}
}