local wk = require("which-key") wk.register({ -- netrw commands n = { name = "+netrw", v = { "Ex", "Explorer" } }, -- tab commands t = { name = "+tab", f = { "tabnew", "New" }, g = { "tabn", "Next" }, b = { "tabp","Previous" }, h = { "tabc", "Close" } }, -- pane movement commands h = { "h", "Pane Left" }, j = { "j", "Pane Down" }, k = { "k", "Pane Up" }, l = { "l", "Pane Right" } }, { prefix = "" })