aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVivek R <123vivekr@gmail.com>2018-08-29 01:11:30 +0530
committerJustin M. Keyes <justinkz@gmail.com>2018-08-28 21:41:30 +0200
commit87904ae3c4fd150d7c478e48ee79bcdf7f931878 (patch)
tree3573c4309b31ca656fd2f8d8386b551a32845c9e /src
parent0a77dc7e05cd794f03baaa79388b564b1a9cb703 (diff)
downloadrneovim-87904ae3c4fd150d7c478e48ee79bcdf7f931878.tar.gz
rneovim-87904ae3c4fd150d7c478e48ee79bcdf7f931878.tar.bz2
rneovim-87904ae3c4fd150d7c478e48ee79bcdf7f931878.zip
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 <Bram@vim.org> https://github.com/vim/vim/commit/83ec2a7f5fb481b30a5d556b6aad49a62585bccd
Diffstat (limited to 'src')
-rw-r--r--src/nvim/eval.c3
1 files changed, 3 insertions, 0 deletions
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
@@ -10609,6 +10609,9 @@ static void f_has(typval_T *argvars, typval_T *rettv, FunPtr fptr)
#ifdef HAVE_ACL
"acl",
#endif
+#ifdef FEAT_AUTOCHDIR
+ "autochdir",
+#endif
"arabic",
"autocmd",
"browsefilter",