local wk = require("which-key") wk.register({ -- 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 = "" })