summaryrefslogtreecommitdiff
path: root/src/testdir/test_packadd.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.1432: various inconsistencies in test filesv8.2.1432Bram Moolenaar2020-08-121-6/+3
| | | | | | | Problem: Various inconsistencies in test files. Solution: Add modelines where they were missing. Use Check commands instead of silently skipping over tests. Adjust indents and comments. (Ken Takata, closes #6695)
* patch 8.2.0174: various commands not completely testedv8.2.0174Bram Moolenaar2020-01-291-0/+4
| | | | | Problem: Various commands not completely tested. Solution: Add more test cases. (Yegappan Lakshmanan, closes #5551)
* patch 8.1.0354: packadd test fails on MS-Windowsv8.1.0354Bram Moolenaar2018-09-081-2/+3
| | | | | Problem: Packadd test fails on MS-Windows. Solution: Ignore difference between forward and backward slashes.
* patch 8.1.0353: an "after" directory of a package is appended to 'rtp'v8.1.0353Bram Moolenaar2018-09-081-1/+19
| | | | | | | Problem: An "after" directory of a package is appended to 'rtp', which will be after the user's "after" directory. () Solution: Insert the package "after" directory before any other "after" directory in 'rtp'. (closes #3409)
* patch 8.0.1734: package directory not added to 'rtp' if prefix matchesv8.0.1734Bram Moolenaar2018-04-181-0/+9
| | | | | | Problem: Package directory not added to 'rtp' if prefix matches. Solution: Check the match is a full match. (Ozaki Kiichi, closes #2817) Also handle different ways of spelling a path.
* patch 8.0.1469: when package path is a symlink 'runtimepath' is wrongv8.0.1469Bram Moolenaar2018-02-041-7/+44
| | | | | | | Problem: When package path is a symlink adding it to 'runtimepath' happens at the end. Solution: Do not resolve symlinks before locating the position in 'runtimepath'. (Ozaki Kiichi, closes #2604)
* patch 8.0.1398: :packadd does not load packages from the "start" directoryv8.0.1398Bram Moolenaar2017-12-171-0/+18
| | | | | | | 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.
* patch 8.0.1224: still interference between test functionsv8.0.1224Bram Moolenaar2017-10-271-1/+1
| | | | | | Problem: Still interference between test functions. Solution: Clear autocommands. Wipe all buffers. Fix tests that depend on a specific start context.
* patch 8.0.1200: tests switch the bell off twicev8.0.1200Bram Moolenaar2017-10-151-1/+0
| | | | | Problem: Tests switch the bell off twice. Solution: Don't set 'belloff' in individual tests. (Christian Brabandt)
* patch 8.0.0437: packadd test does not fully workv8.0.0437Bram Moolenaar2017-03-091-2/+3
| | | | | | Problem: The packadd test does not create the symlink correctly and does not test the right thing. Solution: Create the directory and symlink correctly.
* patch 8.0.0433: beeps when running testsv8.0.0433Bram Moolenaar2017-03-081-0/+2
| | | | | Problem: Quite a few beeps when running tests. Solution: Set 'belloff' for these tests. (Christian Brabandt)
* patch 8.0.0326: packadd test uses wrong directory namev8.0.0326Bram Moolenaar2017-02-111-2/+2
| | | | | Problem: Packadd test uses wrong directory name. Solution: Use the variable name value. (Hirohito Higashi)
* patch 8.0.0325: packadd test does not clean up symlinkv8.0.0325Bram Moolenaar2017-02-111-0/+1
| | | | | Problem: Packadd test does not clean up symlink. Solution: Delete the link. (Hirohito Higashi)
* patch 8.0.0308: 'runtimepath' not update correctly when using symbolic linkv8.0.0308Bram Moolenaar2017-02-051-0/+33
| | | | | | | Problem: When using a symbolic link, the package path will not be inserted at the right position in 'runtimepath'. (Dugan Chen, Norio Takagi) Solution: Resolve symbolic links when finding the right position in 'runtimepath'. (Hirohito Higashi)
* patch 7.4.1840v7.4.1840Bram Moolenaar2016-05-241-1/+3
| | | | | | Problem: When using packages an "after" directory cannot be used. Solution: Add the "after" directory of the package to 'runtimepath' if it exists.
* patch 7.4.1712v7.4.1712Bram Moolenaar2016-04-051-4/+29
| | | | | | | Problem: For plugins in packages, plugin authors need to take care of all dependencies. Solution: When loading "start" packages and for :packloadall, first add all directories to 'runtimepath' before sourcing plugins.
* patch 7.4.1699v7.4.1699Bram Moolenaar2016-04-021-1/+6
| | | | | Problem: :packadd does not work the same when used early or late. Solution: Always load plugins matching "plugin/**/*.vim".
* patch 7.4.1554v7.4.1554Bram Moolenaar2016-03-131-0/+23
| | | | | Problem: Completion for :colorscheme does not use 'packpath'. Solution: Make it work, add a test. (Hirohito Higashi)
* patch 7.4.1553v7.4.1553Bram Moolenaar2016-03-121-0/+47
| | | | | Problem: ":runtime" does not use 'packpath'. Solution: Add "what" argument.
* patch 7.4.1552v7.4.1552Bram Moolenaar2016-03-121-0/+20
| | | | | Problem: ":colorscheme" does not use 'packpath'. Solution: Also use in "start" and "opt" directories in 'packpath'.
* patch 7.4.1551v7.4.1551Bram Moolenaar2016-03-121-0/+17
| | | | | Problem: Cannot generate help tags in all doc directories. Solution: Make ":helptags ALL" work.
* patch 7.4.1550v7.4.1550Bram Moolenaar2016-03-121-0/+17
| | | | | Problem: Cannot load packages early. Solution: Add the ":packloadall" command.
* patch 7.4.1499v7.4.1499Bram Moolenaar2016-03-061-0/+4
| | | | | Problem: No error message when :packadd does not find anything. Solution: Add an error message. (Hirohito Higashi)
* patch 7.4.1492v7.4.1492Bram Moolenaar2016-03-051-0/+21
| | | | | Problem: No command line completion for ":packadd". Solution: Implement completion. (Hirohito Higashi)
* patch 7.4.1486v7.4.1486Bram Moolenaar2016-03-041-0/+57
Problem: ":loadplugin" is not optimal, some people find it confusing. Solution: Only use ":packadd" with an optional "!".