diff options
author | kylo252 <[email protected]> | 2021-10-31 10:12:05 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-10-31 10:12:05 +0100 |
commit | 61a2e0b1912a0c66ec6be8df464396c5de9eac5e (patch) | |
tree | aaf1650308ec74920afcfe84c3307b150d405b1f /lua/lvim/plugin-loader.lua | |
parent | 95d8127f319d135001eb3fd07b30db3fd43d7ee4 (diff) |
fix: update which-key bindings for LvimReload (#1754)
Diffstat (limited to 'lua/lvim/plugin-loader.lua')
-rw-r--r-- | lua/lvim/plugin-loader.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/plugin-loader.lua b/lua/lvim/plugin-loader.lua index e1ede7bc..f145a958 100644 --- a/lua/lvim/plugin-loader.lua +++ b/lua/lvim/plugin-loader.lua @@ -43,7 +43,7 @@ function plugin_loader:cache_clear() end function plugin_loader:cache_reset() - self.cache_clear() + plugin_loader:cache_clear() require("packer").compile() if utils.is_file(compile_path) then Log:debug "generated packer_compiled.lua" |