From 8b86f1103a54882416d4ac626884d3d8a7e02c63 Mon Sep 17 00:00:00 2001 From: Jurica Bradaric Date: Fri, 22 Jan 2016 17:49:39 +0100 Subject: 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 --- src/nvim/window.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/window.h') 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() -- cgit