commit | 38b85cb4d7216705058708bacbc25ab90cd61595 | [log] [tgz] |
---|---|---|
author | Yegappan Lakshmanan <yegappan@yahoo.com> | Thu Feb 24 13:28:41 2022 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Feb 24 13:28:41 2022 +0000 |
tree | 3eb078ed612a835d9d6eecf7e3a4b84f209f1618 | |
parent | 9c9be05b17ececb1515a2f41a4dedbf848d3d8b6 [diff] [blame] |
patch 8.2.4463: completion only uses strict matching Problem: Completion only uses strict matching. Solution: Add the "fuzzy" item for 'wildoptions'. (Yegappan Lakshmanan, closes #9803)
diff --git a/src/option.h b/src/option.h index ebbf94b..2116fe9 100644 --- a/src/option.h +++ b/src/option.h
@@ -358,6 +358,7 @@ // 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'