Skip to content

DefCon 2.6.0

Latest
Compare
Choose a tag to compare
@britzl britzl released this 09 Dec 17:35
· 4 commits to master since this release
d621e42

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)