diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | plugins/plugin_manager/init.lua | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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) |