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 },
keymaps = {
["j"] = "move_next",
["k"] = "move_prev",
["gj"] = "move2parent",
["J"] = "move_change_next",
["K"] = "move_change_prev",
["<cr>"] = "action_enter",
["p"] = "enter_diffbuf",
["q"] = "quit",
["move_next"] = "j",
["move_prev"] = "k",
["move2parent"] = "gj",
["move_change_next"] = "J",
["move_change_prev"] = "K",
["action_enter"] = "<cr>",
["enter_diffbuf"] = "p",
["quit"] = "q",
},
}