added rename

This commit is contained in:
2026-03-18 18:38:35 +01:00
parent 51625ed296
commit e3510a96fb
4 changed files with 138 additions and 16 deletions

View File

@@ -121,6 +121,7 @@ pub struct KeybindsConfig {
pub delete_item: String,
pub undo: String,
pub redo: String,
pub rename: String,
}
impl Default for KeybindsConfig {
@@ -144,6 +145,7 @@ pub struct KeybindsConfig {
delete_item: "dd".to_string(),
undo: "u".to_string(),
redo: "U".to_string(),
rename: "r".to_string(),
}
}
}