mirror of
https://git.aramjonghu.nl/AramJonghu/nvim.git
synced 2026-06-06 16:38:24 +02:00
fixed deprecated syntax undotree.lua
This commit is contained in:
@@ -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",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user