diff options
author | opalmay <[email protected]> | 2023-02-24 17:07:55 +0200 |
---|---|---|
committer | opalmay <[email protected]> | 2023-02-24 17:18:10 +0200 |
commit | d3dc0b2bb36145273c549408cd98648846501096 (patch) | |
tree | 4168074f4ae4a523be658ca34490998f32da37db /lua/lvim/utils/hooks.lua | |
parent | e794be453b9f15158ee04c9d79fd3423f49089f1 (diff) |
fix: lazy cache (#3892)
* fix: lazy cache
* refactor: add pcall
Diffstat (limited to 'lua/lvim/utils/hooks.lua')
-rw-r--r-- | lua/lvim/utils/hooks.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lua/lvim/utils/hooks.lua b/lua/lvim/utils/hooks.lua index 37a8db93..52594b5c 100644 --- a/lua/lvim/utils/hooks.lua +++ b/lua/lvim/utils/hooks.lua @@ -27,7 +27,6 @@ end ---It also forces regenerating any template ftplugin files ---Tip: Useful for clearing any outdated settings function M.reset_cache() - plugin_loader.reset_cache() local lvim_modules = {} for module, _ in pairs(package.loaded) do if module:match "lvim.core" or module:match "lvim.lsp" then |