aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2023-08-18 10:33:17 -0400
committerAdam Harrison <adamdharrison@gmail.com>2023-08-18 10:33:17 -0400
commit76413e920d36685e6b72b4f593b7750b958c8ae3 (patch)
tree808634f567425cc7cd376876f24a5bd0cd8c74f9
parent60ab0274717992c98ddc49bf8398419117e597b0 (diff)
downloadlite-xl-plugin-manager-76413e920d36685e6b72b4f593b7750b958c8ae3.tar.gz
lite-xl-plugin-manager-76413e920d36685e6b72b4f593b7750b958c8ae3.zip
Minor documentation updates.
-rw-r--r--README.md2
-rw-r--r--plugins/plugin_manager/init.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3eafd59..aaa3fb8 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ plugins from lite-xl, as well as different version of lite-xl.
Can be used by a package manager plugin that works from inside the editor
and calls this binary.
-Also contains a plugin_manager.lua plugin to integrate the binary with lite in
+Also contains a `plugin_manager.lua` plugin to integrate the binary with lite-xl in
the form of an easy-to-use GUI.
By default in releases, `lpm` will automatically consume the `manifest.json`
diff --git a/plugins/plugin_manager/init.lua b/plugins/plugin_manager/init.lua
index cb09235..274776a 100644
--- a/plugins/plugin_manager/init.lua
+++ b/plugins/plugin_manager/init.lua
@@ -158,7 +158,7 @@ function PluginManager:refresh(options)
end
self.last_refresh = os.time()
prom:resolve(addons)
- run({ "repo", "list" }):done(function(repositories)
+ run({ "repo", "list" }, options.progress):done(function(repositories)
self.repositories = json.decode(repositories)["repositories"]
end)
end)