summaryrefslogtreecommitdiff
path: root/src/search.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-10-29 18:58:01 +0100
committerBram Moolenaar <Bram@vim.org>2020-10-29 18:58:01 +0100
commitdcdd42a8ccb9bafd857735d694b074269f337333 (patch)
treee1271c66ae7fe5b284c44c668af37eaae1b9c346 /src/search.c
parentcf4d454df0619ee41ef40e7e91fce3fb061d7d5b (diff)
downloadvim-git-dcdd42a8ccb9bafd857735d694b074269f337333.tar.gz
patch 8.2.1921: fuzzy matching does not recognize path separatorsv8.2.1921
Problem: Fuzzy matching does not recognize path separators. Solution: Add a bonus for slash and backslash. (Yegappan Lakshmanan, closes #7225)
Diffstat (limited to 'src/search.c')
-rw-r--r--src/search.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/search.c b/src/search.c
index ebeb3f9b9..cc7b5a979 100644
--- a/src/search.c
+++ b/src/search.c
@@ -4258,8 +4258,10 @@ typedef struct
// bonus for adjacent matches; this is higher than SEPARATOR_BONUS so that
// matching a whole word is preferred.
#define SEQUENTIAL_BONUS 40
-// bonus if match occurs after a separator
-#define SEPARATOR_BONUS 30
+// bonus if match occurs after a path separator
+#define PATH_SEPARATOR_BONUS 30
+// bonus if match occurs after a word separator
+#define WORD_SEPARATOR_BONUS 25
// bonus if match is uppercase and prev is lower
#define CAMEL_BONUS 30
// bonus if the first letter is matched
@@ -4334,7 +4336,6 @@ fuzzy_match_compute_score(
// Camel case
int neighbor = ' ';
int curr;
- int neighborSeparator;
if (has_mbyte)
{
@@ -4355,10 +4356,11 @@ fuzzy_match_compute_score(
if (vim_islower(neighbor) && vim_isupper(curr))
score += CAMEL_BONUS;
- // Separator
- neighborSeparator = neighbor == '_' || neighbor == ' ';
- if (neighborSeparator)
- score += SEPARATOR_BONUS;
+ // Bonus if the match follows a separator character
+ if (neighbor == '/' || neighbor == '\\')
+ score += PATH_SEPARATOR_BONUS;
+ else if (neighbor == ' ' || neighbor == '_')
+ score += WORD_SEPARATOR_BONUS;
}
else
{