diff options
| author | Björn Linse <bjorn.linse@gmail.com> | 2021-09-28 13:51:26 +0200 |
|---|---|---|
| committer | Björn Linse <bjorn.linse@gmail.com> | 2021-10-17 16:21:42 +0200 |
| commit | ea2023f689ad8f368faad6e52c85fbc9762a7296 (patch) | |
| tree | 2e96efb7d71a8f3624af3924d6f28829a0e5e8df /test/functional/fixtures/pack/foo/start/fancyplugin/after/lua | |
| parent | f19dc0608161622f7786eb3cddee27d086cc3ea3 (diff) | |
| download | rneovim-ea2023f689ad8f368faad6e52c85fbc9762a7296.tar.gz rneovim-ea2023f689ad8f368faad6e52c85fbc9762a7296.tar.bz2 rneovim-ea2023f689ad8f368faad6e52c85fbc9762a7296.zip | |
fix(runtime): don't use regexes inside lua require'mod'
Fixes #15147 and fixes #15497. Also sketch "subdir" caching. Currently
this only caches whether an rtp entry has a "lua/" subdir but we could
consider cache other subdirs potentially or even "lua/mybigplugin/"
possibly.
Note: the async_leftpad test doesn't actually fail on master, at least
not deterministically (even when disabling the fast_breakcheck
throttling). It's still useful as a regression test for further changes
and included as such.
Diffstat (limited to 'test/functional/fixtures/pack/foo/start/fancyplugin/after/lua')
| -rw-r--r-- | test/functional/fixtures/pack/foo/start/fancyplugin/after/lua/fancy_y.lua | 1 | ||||
| -rw-r--r-- | test/functional/fixtures/pack/foo/start/fancyplugin/after/lua/fancy_z.lua | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/fixtures/pack/foo/start/fancyplugin/after/lua/fancy_y.lua b/test/functional/fixtures/pack/foo/start/fancyplugin/after/lua/fancy_y.lua new file mode 100644 index 0000000000..7daa7733a0 --- /dev/null +++ b/test/functional/fixtures/pack/foo/start/fancyplugin/after/lua/fancy_y.lua @@ -0,0 +1 @@ +return "I am fancy_y.lua" diff --git a/test/functional/fixtures/pack/foo/start/fancyplugin/after/lua/fancy_z.lua b/test/functional/fixtures/pack/foo/start/fancyplugin/after/lua/fancy_z.lua new file mode 100644 index 0000000000..6e81afdd70 --- /dev/null +++ b/test/functional/fixtures/pack/foo/start/fancyplugin/after/lua/fancy_z.lua @@ -0,0 +1 @@ +return "I am fancy_z.lua" |