]> granicus.if.org Git - vim/commitdiff
patch 8.2.1921: fuzzy matching does not recognize path separators v8.2.1921
authorBram Moolenaar <Bram@vim.org>
Thu, 29 Oct 2020 17:58:01 +0000 (18:58 +0100)
committerBram Moolenaar <Bram@vim.org>
Thu, 29 Oct 2020 17:58:01 +0000 (18:58 +0100)
Problem:    Fuzzy matching does not recognize path separators.
Solution:   Add a bonus for slash and backslash. (Yegappan Lakshmanan,
            closes #7225)

src/search.c
src/testdir/test_matchfuzzy.vim
src/version.c

index ebeb3f9b9888aa56af6cc6859a2b791a1d7e341f..cc7b5a979269a01321b12abffb4ce9ee35bf4c95 100644 (file)
@@ -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
        {
index 92de8b83698750b978b5e9a95838913e4dfb58fa..d695456a88191460e933fac83c614cd49f33cd1b 100644 (file)
@@ -43,6 +43,8 @@ func Test_matchfuzzy()
   call assert_equal(['.vim/vimrc', '.vim/vimrc_colors', '.vim/v_i_m_r_c'], ['.vim/vimrc', '.vim/vimrc_colors', '.vim/v_i_m_r_c']->matchfuzzy('vimrc'))
   " gap penalty
   call assert_equal(['xxayybxxxx', 'xxayyybxxx', 'xxayyyybxx'], ['xxayyyybxx', 'xxayyybxxx', 'xxayybxxxx']->matchfuzzy('ab'))
+  " path separator vs word separator
+  call assert_equal(['color/setup.vim', 'color\\setup.vim', 'color setup.vim', 'color_setup.vim', 'colorsetup.vim'], matchfuzzy(['colorsetup.vim', 'color setup.vim', 'color/setup.vim', 'color_setup.vim', 'color\\setup.vim'], 'setup.vim'))
 
   " match multiple words (separated by space)
   call assert_equal(['foo bar baz'], ['foo bar baz', 'foo', 'foo bar', 'baz bar']->matchfuzzy('baz foo'))
index 7031dc5ac9cb3b9fa938eba39c008a0ea6aefee7..1cdfb4751629909d7dabadd98ea901aa8833dc5d 100644 (file)
@@ -750,6 +750,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1921,
 /**/
     1920,
 /**/