diff options
| author | Björn Linse <bjorn.linse@gmail.com> | 2021-09-11 20:11:16 +0200 |
|---|---|---|
| committer | Björn Linse <bjorn.linse@gmail.com> | 2021-09-18 13:59:19 +0200 |
| commit | a860f7880fd5d5cef5299ff8d450ac037bee2300 (patch) | |
| tree | b929329658316d6a8a7aead01f0b701c0e278fca /test/functional/fixtures/pack/foo/start/fancyplugin | |
| parent | 396280d3030685c6b7c4d962f24bb5171a735b47 (diff) | |
| download | rneovim-a860f7880fd5d5cef5299ff8d450ac037bee2300.tar.gz rneovim-a860f7880fd5d5cef5299ff8d450ac037bee2300.tar.bz2 rneovim-a860f7880fd5d5cef5299ff8d450ac037bee2300.zip | |
refactor(runtime): handle pack/foo/start/bar/after dirs properly
The order should be:
XDG_CONFIG_HOME/nvim
XDG_DATA_HOME/nvim/site/pack/foo/start/bar/
XDG_CONFIG_HOME/nvim/after
XDG_DATA_HOME/nvim/site/pack/foo/start/bar/after
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") |