blob: d536bc76671babc2094b890c5998e06912f1b555 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
 | local M = {}
local Log = require "lvim.core.log"
local in_headless = #vim.api.nvim_list_uis() == 0
function M.run_pre_update()
  Log:debug "Starting pre-update hook"
  _G.__luacache.clear_cache()
end
---Reset any startup cache files used by Packer and Impatient
---It also forces regenerating any template ftplugin files
---Tip: Useful for clearing any outdated settings
function M.reset_cache()
  _G.__luacache.clear_cache()
  require("lvim.plugin-loader"):cache_reset()
  package.loaded["lvim.lsp.templates"] = nil
  require("lvim.lsp.templates").generate_templates()
end
function M.run_post_update()
  Log:debug "Starting post-update hook"
  M.reset_cache()
  if not in_headless then
    vim.schedule(function()
      require("packer").install()
      -- TODO: add a changelog
      vim.notify("Update complete", vim.log.levels.INFO)
      vim.cmd "LspStart"
    end)
  end
end
return M
 |