diff options
author | James McCoy <jamessan@jamessan.com> | 2016-06-21 23:13:46 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-07-08 01:45:20 -0400 |
commit | 53613e7fcd27feda32844904f4ef88bf82841015 (patch) | |
tree | b08376b2cff94901af9ff22e9746c7510f3ae7b3 /src/nvim/vim.h | |
parent | 080476882be32768a97e26af22133435ccb8fc2a (diff) | |
download | rneovim-53613e7fcd27feda32844904f4ef88bf82841015.tar.gz rneovim-53613e7fcd27feda32844904f4ef88bf82841015.tar.bz2 rneovim-53613e7fcd27feda32844904f4ef88bf82841015.zip |
vim-patch:7.4.1553
Problem: ":runtime" does not use 'packpath'.
Solution: Add "what" argument.
https://github.com/vim/vim/commit/8dcf259d904cfb965d31841dc74a5cfaf5a351d9
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r-- | src/nvim/vim.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h index 47c5a0465a..09e9e850a7 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -314,5 +314,6 @@ enum { #define DIP_ERR 0x04 // give an error message when none found #define DIP_START 0x08 // also use "start" directory in 'packpath' #define DIP_OPT 0x10 // also use "opt" directory in 'packpath' +#define DIP_NORTP 0x20 // do not use 'runtimepath' #endif /* NVIM_VIM_H */ |