From 574eff0df1aff9bdc6d32939a03312cc08803de3 Mon Sep 17 00:00:00 2001 From: Phil Jones Date: Mon, 17 Apr 2023 23:43:05 +0100 Subject: Add --matching-algorithm option. This replaces the --fuzzy-match algorithm. Available choices are normal, prefix and fuzzy. Levenshtein distance was investigated, but it seems pretty rubbish for tofi's use case, where you normally want a good match when you've only typed a small portion of the target string. --- src/fuzzy_match.h | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/fuzzy_match.h (limited to 'src/fuzzy_match.h') diff --git a/src/fuzzy_match.h b/src/fuzzy_match.h deleted file mode 100644 index d427bc6..0000000 --- a/src/fuzzy_match.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef FUZZY_MATCH_H -#define FUZZY_MATCH_H - -#include - -int32_t fuzzy_match_simple_words(const char *restrict patterns, const char *restrict str); -int32_t fuzzy_match_words(const char *restrict patterns, const char *restrict str); -int32_t fuzzy_match(const char *restrict pattern, const char *restrict str); - -#endif /* FUZZY_MATCH_H */ -- cgit v1.2.3