feat: trouble v3

This commit is contained in:
Folke Lemaitre 2024-05-30 14:41:13 +02:00
parent ae098d67d6
commit 95d055dcf7
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
7 changed files with 47 additions and 134 deletions

View file

@ -89,6 +89,10 @@ function M.migrate()
json.data.extras = vim.tbl_filter(function(extra)
return not (extra == "lazyvim.plugins.extras.lazyrc")
end, json.data.extras or {})
elseif json.data.version == 5 then
json.data.extras = vim.tbl_filter(function(extra)
return not (extra == "lazyvim.plugins.extras.editor.trouble-v3")
end, json.data.extras or {})
end
M.save()