NEW: Cycle through suggestions with tab (by @Jerakin)
NEW: It is now possible to define descriptions for each command in a module by adding a key with suffix _desc
:
local M = {}
M.mycommand_desc = "This is the description for my command"
function M.mycommand()
print("Hello from my command")
end
return M
CHANGE: Reduce border size (by @Jerakin)
CHANGE: Command list is now sorted alphabetically (by @Jerakin)