diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-02-27 17:19:10 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-02-27 17:19:10 +0100 |
commit | d45c07ac7499358c5cb096cadb675ce74ae3eaf6 (patch) | |
tree | 13875945fd62b050fb38fed1b109fedb350c2301 /src/vim.h | |
parent | dfd7691bb85b345bd86cf30945a66acf7c782920 (diff) | |
download | vim-git-d45c07ac7499358c5cb096cadb675ce74ae3eaf6.tar.gz |
updated for version 7.4.642v7.4.642
Problem: When using "gf" escaped spaces are not handled.
Solution: Recognize escaped spaces.
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -939,6 +939,7 @@ extern char *(*dyn_libintl_textdomain)(const char *domainname); #define FNAME_INCL 8 /* apply 'includeexpr' */ #define FNAME_REL 16 /* ".." and "./" are relative to the (current) file instead of the current directory */ +#define FNAME_UNESC 32 /* remove backslashes used for escaping */ /* Values for buflist_getfile() */ #define GETF_SETMARK 0x01 /* set pcmark before jumping */ |