implemented adding new vars
All checks were successful
Version Check / check-version (pull_request) Successful in 3s

This commit is contained in:
2026-03-18 18:49:43 +01:00
parent e3510a96fb
commit 50278821ca
7 changed files with 185 additions and 44 deletions

View File

@@ -122,6 +122,9 @@ pub struct KeybindsConfig {
pub undo: String,
pub redo: String,
pub rename: String,
pub append_group: String,
pub prepend_group: String,
pub toggle_group: String,
}
impl Default for KeybindsConfig {
@@ -146,6 +149,9 @@ pub struct KeybindsConfig {
undo: "u".to_string(),
redo: "U".to_string(),
rename: "r".to_string(),
append_group: "alt+o".to_string(),
prepend_group: "alt+O".to_string(),
toggle_group: "t".to_string(),
}
}
}