Merge branch 'folke:main' into deps_of_all_optional

This commit is contained in:
abeldekat 2023-07-22 08:02:05 +00:00 committed by GitHub
commit 8703346c4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 3 deletions

View file

@ -1,5 +1,12 @@
# Changelog
## [10.2.1](https://github.com/folke/lazy.nvim/compare/v10.2.0...v10.2.1) (2023-07-22)
### Bug Fixes
* **loader:** getscriptinfo compat with stable. Fixes [#944](https://github.com/folke/lazy.nvim/issues/944) ([e428c5e](https://github.com/folke/lazy.nvim/commit/e428c5ee4b02dfb39203ac8745a58c1226ceebae))
## [10.2.0](https://github.com/folke/lazy.nvim/compare/v10.1.0...v10.2.0) (2023-07-20)

View file

@ -1,4 +1,4 @@
*lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 July 21
*lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 July 22
==============================================================================
Table of Contents *lazy.nvim-table-of-contents*

View file

@ -161,7 +161,7 @@ M.defaults = {
debug = false,
}
M.version = "10.2.0" -- x-release-please-version
M.version = "10.2.1" -- x-release-please-version
M.ns = vim.api.nvim_create_namespace("lazy")

View file

@ -266,7 +266,7 @@ function M.reload(plugin)
end
-- reload any vimscript files for this plugin
local scripts = vim.fn.getscriptinfo({ name = ".vim" })
local scripts = vim.fn.getscriptinfo()
local loaded_scripts = {}
for _, s in ipairs(scripts) do
---@type string