diff options
| author | Björn Linse <bjorn.linse@gmail.com> | 2021-09-18 17:14:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-18 17:14:25 +0200 |
| commit | 6cad86fffdb91d3997a707ff6adb0b5991587b3e (patch) | |
| tree | b929329658316d6a8a7aead01f0b701c0e278fca /test/functional/fixtures/pack/foo/start/fancyplugin | |
| parent | 8ef2b56cac895c151345cf0ff0a97456c0a7fdd2 (diff) | |
| parent | a860f7880fd5d5cef5299ff8d450ac037bee2300 (diff) | |
| download | rneovim-6cad86fffdb91d3997a707ff6adb0b5991587b3e.tar.gz rneovim-6cad86fffdb91d3997a707ff6adb0b5991587b3e.tar.bz2 rneovim-6cad86fffdb91d3997a707ff6adb0b5991587b3e.zip | |
Merge pull request #15632 from bfredl/rtptest
runtime: always use DIP_START and remove duplication of start packages in &rtp
Diffstat (limited to 'test/functional/fixtures/pack/foo/start/fancyplugin')
| -rw-r--r-- | test/functional/fixtures/pack/foo/start/fancyplugin/after/filen.lua | 1 | ||||
| -rw-r--r-- | test/functional/fixtures/pack/foo/start/fancyplugin/filen.lua | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/fixtures/pack/foo/start/fancyplugin/after/filen.lua b/test/functional/fixtures/pack/foo/start/fancyplugin/after/filen.lua new file mode 100644 index 0000000000..9beac762ee --- /dev/null +++ b/test/functional/fixtures/pack/foo/start/fancyplugin/after/filen.lua @@ -0,0 +1 @@ +table.insert(_G.test_loadorder, "FANCY after") diff --git a/test/functional/fixtures/pack/foo/start/fancyplugin/filen.lua b/test/functional/fixtures/pack/foo/start/fancyplugin/filen.lua new file mode 100644 index 0000000000..34e4b9c95e --- /dev/null +++ b/test/functional/fixtures/pack/foo/start/fancyplugin/filen.lua @@ -0,0 +1 @@ +table.insert(_G.test_loadorder, "FANCY") |