summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2020-09-30 21:56:37 +0200
committerDave Davenport <qball@gmpclient.org>2020-09-30 21:56:37 +0200
commitb4bbce4af5593486ce322bfaa55ef83f75a8b7a6 (patch)
tree7bcd88273ca3f3e81cc68775215d6b8c3303db46 /config
parent96c7ab0fffa7dee1090c72fbe0763bcb9f75667a (diff)
[Helper] Add -normalize-match option.
Decomposes string and remove accent characters before matching. This makes o match ö, é match e and more. It is not a perfect implementation but works. Currently disables the match highlighting. Fixes: #1119
Diffstat (limited to 'config')
-rw-r--r--config/config.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/config/config.c b/config/config.c
index 05723e5a..111ec742 100644
--- a/config/config.c
+++ b/config/config.c
@@ -170,5 +170,8 @@ Settings config = {
.drun_reload_desktop_cache = FALSE,
/** Benchmarks */
- .benchmark_ui = FALSE
+ .benchmark_ui = FALSE,
+
+ /** normalize match */
+ .normalize_match = FALSE
};