added undo + dynamic status bar
All checks were successful
Version Check / check-version (pull_request) Successful in 3s

This commit is contained in:
2026-03-17 14:33:26 +01:00
parent f6a84416e6
commit 1d9342186a
7 changed files with 52 additions and 10 deletions

View File

@@ -119,6 +119,7 @@ pub struct KeybindsConfig {
pub append_item: String,
pub prepend_item: String,
pub delete_item: String,
pub undo: String,
}
impl Default for KeybindsConfig {
@@ -140,6 +141,7 @@ impl Default for KeybindsConfig {
append_item: "o".to_string(),
prepend_item: "O".to_string(),
delete_item: "dd".to_string(),
undo: "u".to_string(),
}
}
}