feat: scratchpads
All checks were successful
Nix Build / nix build (push) Successful in 22s

This commit is contained in:
atagen 2026-02-25 17:04:50 +11:00
parent 4c748be113
commit 0bb41f931e
3 changed files with 127 additions and 43 deletions

View file

@ -60,6 +60,7 @@ pub struct Config {
pub strict: bool,
#[serde(default = "default_true")]
pub activation_on_fill: bool,
pub scratchpads: HashMap<String, u8>,
}
impl Default for Config {
@ -68,6 +69,7 @@ impl Default for Config {
prepopulate: 3,
strict: true,
activation_on_fill: true,
scratchpads: HashMap::new(),
}
}
}