diff options
author | Jurica Bradaric <jbradaric@gmail.com> | 2016-01-22 17:49:39 +0100 |
---|---|---|
committer | Jurica Bradaric <jbradaric@gmail.com> | 2016-01-22 19:28:17 +0100 |
commit | 8b86f1103a54882416d4ac626884d3d8a7e02c63 (patch) | |
tree | 778917f050838cdc042dfe4aeeb11e29f18d297e /src/nvim/window.h | |
parent | feb70192a85d04343ecc383ea9a42aa8cd15e98d (diff) | |
download | rneovim-8b86f1103a54882416d4ac626884d3d8a7e02c63.tar.gz rneovim-8b86f1103a54882416d4ac626884d3d8a7e02c63.tar.bz2 rneovim-8b86f1103a54882416d4ac626884d3d8a7e02c63.zip |
vim-patch:7.4.642
Problem: When using "gf" escaped spaces are not handled.
Solution: Recognize escaped spaces.
https://github.com/vim/vim/commit/d45c07ac7499358c5cb096cadb675ce74ae3eaf6
Diffstat (limited to 'src/nvim/window.h')
-rw-r--r-- | src/nvim/window.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/window.h b/src/nvim/window.h index eccc7835a8..67e1d2106d 100644 --- a/src/nvim/window.h +++ b/src/nvim/window.h @@ -10,6 +10,7 @@ #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 */ /* * arguments for win_split() |