From e902a172ef1a58e93eeae0919bddb3578a2142a2 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Mon, 25 Apr 2016 23:07:51 -0400 Subject: vim-patch:7.4.1384 Problem: It is not easy to use a set of plugins and their dependencies. Solution: Add packages, ":loadopt", 'packpath'. https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf --- src/nvim/options.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/nvim/options.lua') diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 218e34f595..d19af4f73f 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -1639,6 +1639,16 @@ return { varname='p_opfunc', defaults={if_true={vi=""}} }, + { + full_name='packpath', abbreviation='pp', + type='string', list='onecomma', scope={'global'}, + deny_duplicates=true, + secure=true, + vi_def=true, + expand=true, + varname='p_pp', + defaults={if_true={vi=''}} + }, { full_name='paragraphs', abbreviation='para', type='string', scope={'global'}, -- cgit