mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-06-28 11:24:14 +00:00
Merge branch 'folke:main' into deps_of_all_optional
This commit is contained in:
commit
8703346c4a
4 changed files with 10 additions and 3 deletions
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
@ -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*
|
||||
|
|
|
@ -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")
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue