feat: add commands to open/edit lvim logs (#2709)

This commit is contained in:
Daniel Rodríguez Rivero 2022-07-02 09:23:04 +02:00 committed by GitHub
parent 4c78e8a3d2
commit 709873702f
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -65,6 +65,12 @@ M.defaults = {
print(require("lvim.utils.git").get_lvim_version())
end,
},
{
name = "LvimOpenlog",
fn = function()
vim.fn.execute("edit " .. require("lvim.core.log").get_path())
end,
},
}
function M.load(collection)