mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-06 15:56:34 +00:00
fix(plugin): find plugins with /lua/
instead of /lua
This commit is contained in:
parent
b5b2ab6b6c
commit
8a3152de93
1 changed files with 1 additions and 1 deletions
|
@ -280,7 +280,7 @@ end
|
||||||
-- Finds the plugin that has this path
|
-- Finds the plugin that has this path
|
||||||
---@param path string
|
---@param path string
|
||||||
function M.find(path)
|
function M.find(path)
|
||||||
local lua = path:find("/lua", 1, true)
|
local lua = path:find("/lua/", 1, true)
|
||||||
if lua then
|
if lua then
|
||||||
local name = path:sub(1, lua - 1)
|
local name = path:sub(1, lua - 1)
|
||||||
local slash = name:reverse():find("/", 1, true)
|
local slash = name:reverse():find("/", 1, true)
|
||||||
|
|
Loading…
Add table
Reference in a new issue