added dd remove
All checks were successful
Version Check / check-version (pull_request) Successful in 3s

This commit is contained in:
2026-03-17 13:12:22 +01:00
parent 94ff632b39
commit f123f2d6df
5 changed files with 85 additions and 3 deletions

View File

@@ -116,6 +116,7 @@ pub struct KeybindsConfig {
pub jump_bottom: String,
pub append_item: String,
pub prepend_item: String,
pub delete_item: String,
}
impl Default for KeybindsConfig {
@@ -134,6 +135,7 @@ impl Default for KeybindsConfig {
jump_bottom: "G".to_string(),
append_item: "o".to_string(),
prepend_item: "O".to_string(),
delete_item: "dd".to_string(),
}
}
}