diff options
author | Yegappan Lakshmanan <yegappan@yahoo.com> | 2022-02-24 13:28:41 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-02-24 13:28:41 +0000 |
commit | 38b85cb4d7216705058708bacbc25ab90cd61595 (patch) | |
tree | 3eb078ed612a835d9d6eecf7e3a4b84f209f1618 /src/option.h | |
parent | 9c9be05b17ececb1515a2f41a4dedbf848d3d8b6 (diff) | |
download | vim-git-38b85cb4d7216705058708bacbc25ab90cd61595.tar.gz |
patch 8.2.4463: completion only uses strict matchingv8.2.4463
Problem: Completion only uses strict matching.
Solution: Add the "fuzzy" item for 'wildoptions'. (Yegappan Lakshmanan,
closes #9803)
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/option.h b/src/option.h index ebbf94b06..2116fe995 100644 --- a/src/option.h +++ b/src/option.h @@ -358,6 +358,7 @@ typedef enum { // flags for the 'wildoptions' option // each defined char should be unique over all values. +#define WOP_FUZZY 'z' #define WOP_TAGFILE 't' #define WOP_PUM 'p' |