diff options
author | Jurica Bradaric <jbradaric@gmail.com> | 2016-01-22 18:37:26 +0100 |
---|---|---|
committer | Jurica Bradaric <jbradaric@gmail.com> | 2016-01-22 19:26:23 +0100 |
commit | 22230196cb7cee5c055a0be7a1864ecaf11a7c54 (patch) | |
tree | 76df83f33a5db462b820ade127bdf5882958b392 /src/nvim/ex_getln.h | |
parent | feb70192a85d04343ecc383ea9a42aa8cd15e98d (diff) | |
download | rneovim-22230196cb7cee5c055a0be7a1864ecaf11a7c54.tar.gz rneovim-22230196cb7cee5c055a0be7a1864ecaf11a7c54.tar.bz2 rneovim-22230196cb7cee5c055a0be7a1864ecaf11a7c54.zip |
vim-patch:7.4.654
Problem: glob() and globpath() cannot include links to non-existing files.
(Charles Campbell)
Solution: Add an argument to include all links with glob(). (James McCoy)
Also for globpath().
https://github.com/vim/vim/commit/a245bc79b4c6b83a4b5b6cdb95c4d2165762a20b
Diffstat (limited to 'src/nvim/ex_getln.h')
-rw-r--r-- | src/nvim/ex_getln.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/nvim/ex_getln.h b/src/nvim/ex_getln.h index c537d681c6..21da8b9d42 100644 --- a/src/nvim/ex_getln.h +++ b/src/nvim/ex_getln.h @@ -14,15 +14,16 @@ #define WILD_LONGEST 7 #define WILD_ALL_KEEP 8 -#define WILD_LIST_NOTFOUND 1 -#define WILD_HOME_REPLACE 2 -#define WILD_USE_NL 4 -#define WILD_NO_BEEP 8 -#define WILD_ADD_SLASH 16 -#define WILD_KEEP_ALL 32 -#define WILD_SILENT 64 -#define WILD_ESCAPE 128 -#define WILD_ICASE 256 +#define WILD_LIST_NOTFOUND 0x01 +#define WILD_HOME_REPLACE 0x02 +#define WILD_USE_NL 0x04 +#define WILD_NO_BEEP 0x08 +#define WILD_ADD_SLASH 0x10 +#define WILD_KEEP_ALL 0x20 +#define WILD_SILENT 0x40 +#define WILD_ESCAPE 0x80 +#define WILD_ICASE 0x100 +#define WILD_ALLLINKS 0x200 /// Present history tables typedef enum { |