fixed deprecated syntax undotree.lua

This commit is contained in:
2026-05-19 23:06:05 +02:00
parent f19c66766f
commit c14eb51fad
+9 -8
View File
@@ -12,13 +12,14 @@ require("undotree").setup {
}, },
window = { winblend = 30 }, window = { winblend = 30 },
keymaps = { keymaps = {
["j"] = "move_next", ["move_next"] = "j",
["k"] = "move_prev", ["move_prev"] = "k",
["gj"] = "move2parent", ["move2parent"] = "gj",
["J"] = "move_change_next", ["move_change_next"] = "J",
["K"] = "move_change_prev", ["move_change_prev"] = "K",
["<cr>"] = "action_enter", ["action_enter"] = "<cr>",
["p"] = "enter_diffbuf", ["enter_diffbuf"] = "p",
["q"] = "quit", ["quit"] = "q",
}, },
} }