diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2014-12-20 09:31:29 +0100 |
---|---|---|
committer | Florian Walch <florian@fwalch.com> | 2014-12-20 09:41:51 +0100 |
commit | 7fc7f026ad1103b1f6670507cd9cd7a816ae3539 (patch) | |
tree | 5914da4cacc8ef869c994eb44a427ec5cd50e3ef /src/nvim/regexp_defs.h | |
parent | 5fe519f78a790abbd15d24f05ce19bed22b07990 (diff) | |
download | rneovim-7fc7f026ad1103b1f6670507cd9cd7a816ae3539.tar.gz rneovim-7fc7f026ad1103b1f6670507cd9cd7a816ae3539.tar.bz2 rneovim-7fc7f026ad1103b1f6670507cd9cd7a816ae3539.zip |
vim-patch:7.4.455
Problem: Completion for :buf does not use 'wildignorecase'. (Akshay H)
Solution: Pass the 'wildignorecase' flag around.
https://code.google.com/p/vim/source/detail?r=v7-4-455
Diffstat (limited to 'src/nvim/regexp_defs.h')
-rw-r--r-- | src/nvim/regexp_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/regexp_defs.h b/src/nvim/regexp_defs.h index 8aa89d22b7..1e00f14ac6 100644 --- a/src/nvim/regexp_defs.h +++ b/src/nvim/regexp_defs.h @@ -108,7 +108,7 @@ typedef struct { regprog_T *regprog; char_u *startp[NSUBEXP]; char_u *endp[NSUBEXP]; - int rm_ic; + bool rm_ic; } regmatch_T; /* |