aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2023-11-27 15:09:54 -0500
committerAdam Harrison <adamdharrison@gmail.com>2023-11-27 15:09:54 -0500
commit82e39386d256f9af0e383b0404747400b5a39dcd (patch)
treeff1056d5df96f3c4be64f26d4a62e8baaaa97558
parentbe1a7bcd91ff1e4fa269389cbd65cdd54f288429 (diff)
downloadlite-xl-plugin-manager-82e39386d256f9af0e383b0404747400b5a39dcd.tar.gz
lite-xl-plugin-manager-82e39386d256f9af0e383b0404747400b5a39dcd.zip
Added in a proper repo_path.
-rw-r--r--plugins/plugin_manager/init.lua2
-rw-r--r--plugins/plugin_manager/plugin_view.lua2
-rw-r--r--src/lpm.lua2
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/plugin_manager/init.lua b/plugins/plugin_manager/init.lua
index 5ff7911..4c23f98 100644
--- a/plugins/plugin_manager/init.lua
+++ b/plugins/plugin_manager/init.lua
@@ -153,7 +153,7 @@ function PluginManager:refresh(options)
for i, addon in ipairs(self.addons) do
if addon.status ~= "incompatible" then
table.insert(self.valid_addons, addon)
- if (addon.id == "plugin_manager" or addon.id == "json") and addon.status == "installed" then
+ if (addon.id == "plugin_manager" or addon.id == "json") and (addon.status == "installed" or addon.status == "orphan") then
addon.status = "special"
end
end
diff --git a/plugins/plugin_manager/plugin_view.lua b/plugins/plugin_manager/plugin_view.lua
index 6abf2de..9e9d67c 100644
--- a/plugins/plugin_manager/plugin_view.lua
+++ b/plugins/plugin_manager/plugin_view.lua
@@ -345,7 +345,7 @@ end, {
local directories = { plugin.path }
if plugin.repo_path then
table.insert(directories, plugin.repo_path)
- table.insert(directories, plugin.repo_path:gsub(PATHSEP .. "plugins" .. PATHSEP .. plugin.id .. "$", ""))
+ table.insert(directories, ("" .. plugin.repo_path:gsub(PATHSEP .. "plugins" .. PATHSEP .. plugin.id .. "$", "")))
end
for _, directory in ipairs(directories) do
for i, path in ipairs({ directory .. PATHSEP .. "README.md", directory .. PATHSEP .. "readme.md" }) do
diff --git a/src/lpm.lua b/src/lpm.lua
index 09c6ca9..5f1ed8c 100644
--- a/src/lpm.lua
+++ b/src/lpm.lua
@@ -1808,7 +1808,7 @@ local function print_addon_info(type, addons, filters)
organization = addon.organization,
repository = addon.repository and addon.repository:url(),
path = addon:get_path(system_bottle),
- repo_path = addon.repo_path or addon.repository.local_path,
+ repo_path = addon.repo_path or (addon.repository and addon.repository.local_path or nil),
url = url
}
if addon_matches_filter(hash, filters or {}) then