aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)