vim-patch:8.0.1398: :packadd does not load packages from the "start" directory (#8762)

Problem:    :packadd does not load packages from the "start" directory.
            (Alejandro Hernandez)
Solution:   Make :packadd look in the "start" directory if those packages were
            not loaded on startup.
9e1d399e63
This commit is contained in:
Jan Edmund Lazo
2018-07-22 20:04:49 -04:00
committed by Justin M. Keyes
parent 13d29cb9ed
commit c9f2faf3bf
2 changed files with 43 additions and 7 deletions

View File

@@ -58,6 +58,24 @@ describe('packadd', function()
call assert_fails("packadd", 'E471:')
endfunc
func Test_packadd_start()
let plugdir = expand(s:topdir . '/pack/mine/start/other')
call mkdir(plugdir . '/plugin', 'p')
set rtp&
let rtp = &rtp
filetype on
exe 'split ' . plugdir . '/plugin/test.vim'
call setline(1, 'let g:plugin_works = 24')
wq
packadd other
call assert_equal(24, g:plugin_works)
call assert_true(len(&rtp) > len(rtp))
call assert_true(&rtp =~ (escape(plugdir, '\') . '\($\|,\)'))
endfunc
func Test_packadd_noload()
call mkdir(s:plugdir . '/plugin', 'p')
call mkdir(s:plugdir . '/syntax', 'p')
@@ -286,6 +304,11 @@ describe('packadd', function()
expected_empty()
end)
it('loads packages from "start" directory', function()
call('Test_packadd_start')
expected_empty()
end)
describe('command line completion', function()
local Screen = require('test.functional.ui.screen')
local screen