From 87904ae3c4fd150d7c478e48ee79bcdf7f931878 Mon Sep 17 00:00:00 2001 From: Vivek R <123vivekr@gmail.com> Date: Wed, 29 Aug 2018 01:11:30 +0530 Subject: vim-patch:8.1.0214 (#8927) Problem: +autochdir feature not reported by has() or :version. Solution: Add the feature in the list. Author: Bram Moolenaar https://github.com/vim/vim/commit/83ec2a7f5fb481b30a5d556b6aad49a62585bccd --- src/nvim/eval.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 8db8aaa168..ef98984ed3 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -10608,6 +10608,9 @@ static void f_has(typval_T *argvars, typval_T *rettv, FunPtr fptr) "fname_case", #ifdef HAVE_ACL "acl", +#endif +#ifdef FEAT_AUTOCHDIR + "autochdir", #endif "arabic", "autocmd", -- cgit