diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2025-03-27 08:54:32 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-27 08:54:32 +0800 |
| commit | 8f40ffdb92b6ca25529b470e4a4e2bb7ddbb000a (patch) | |
| tree | 6f487685c4e43e7419b0d8dc460507be674746e0 /src/nvim/quickfix.c | |
| parent | ce590e207720ec53a4592882840725bf8540c7d5 (diff) | |
| parent | 797195e0ea554f2e546ced9104e8fbfa376f283f (diff) | |
| download | rneovim-8f40ffdb92b6ca25529b470e4a4e2bb7ddbb000a.tar.gz rneovim-8f40ffdb92b6ca25529b470e4a4e2bb7ddbb000a.tar.bz2 rneovim-8f40ffdb92b6ca25529b470e4a4e2bb7ddbb000a.zip | |
Merge pull request #32953 from glepnir/vim-9.1.1214
vim-patch:9.1.{1214,1217,1219}: matchfuzzy() "camelcase"
Diffstat (limited to 'src/nvim/quickfix.c')
| -rw-r--r-- | src/nvim/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 44b66c4f73..5f197bc84f 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -5356,7 +5356,7 @@ static bool vgr_match_buflines(qf_list_T *qfl, char *fname, buf_T *buf, char *sp // Fuzzy string match CLEAR_FIELD(matches); - while (fuzzy_match(str + col, spat, false, &score, matches, (int)sz) > 0) { + while (fuzzy_match(str + col, spat, false, &score, matches, (int)sz, true) > 0) { // Pass the buffer number so that it gets used even for a // dummy buffer, unless duplicate_name is set, then the // buffer will be wiped out below. |