aboutsummaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
authorlukeflo2025-10-14 08:54:35 +0200
committerlukeflo2025-10-14 08:54:35 +0200
commitc62b83e02359c24973344699116acc12b4a04108 (patch)
tree2b86c65f311e4ea9f64b911846c95cbc11916cdb /src/config.rs
parent467851007e1861834326deee3116aa88fe839f5a (diff)
downloadbibiman-c62b83e02359c24973344699116acc12b4a04108.tar.gz
bibiman-c62b83e02359c24973344699116acc12b4a04108.zip
skip set and xdata entries by default
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs
index 7c1a0f8..b8d8b45 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -52,6 +52,10 @@ pub static IGNORED_WORDS: LazyLock<Vec<String>> = LazyLock::new(|| {
String::from("at"),
String::from("to"),
String::from("and"),
+ String::from("him"),
+ String::from("her"),
+ String::from("his"),
+ String::from("hers"),
String::from("der"),
String::from("die"),
String::from("das"),
@@ -63,6 +67,12 @@ pub static IGNORED_WORDS: LazyLock<Vec<String>> = LazyLock::new(|| {
String::from("und"),
String::from("für"),
String::from("vor"),
+ String::from("er"),
+ String::from("sie"),
+ String::from("es"),
+ String::from("ihm"),
+ String::from("ihr"),
+ String::from("ihnen"),
]
});