feat: add activation on fill
All checks were successful
Nix Build / nix build (push) Successful in 34s

This commit is contained in:
atagen 2025-07-05 15:30:44 +10:00
parent 555ffca915
commit 3f06af22a3
3 changed files with 20 additions and 0 deletions

View file

@ -48,6 +48,7 @@ impl Default for TagState {
pub struct Config {
pub prepopulate: u8,
pub strict: bool,
pub activation_on_fill: bool,
}
impl Default for Config {
@ -55,6 +56,7 @@ impl Default for Config {
Self {
prepopulate: 3,
strict: true,
activation_on_fill: true,
}
}
}