This module is out of date and is incompatible with the current textadept.
from textadept man:
Key commands and menu commands can no longer be tables. Instead they must be Lua functions. Check your ~/.textadept/init.lua and custom modules and transform any applicable key bindings or menu items. For example:
keys.ca = {func, args} => keys.ca = function() func(args) end
{'Menu Item', {func, args}} => {'Menu Item', function() func(args) end}
This module is out of date and is incompatible with the current textadept.
from textadept man:
Key commands and menu commands can no longer be tables. Instead they must be Lua functions. Check your ~/.textadept/init.lua and custom modules and transform any applicable key bindings or menu items. For example: