On Mon, Jul 16, 2012 at 11:55 PM, felix74 <
hju...@googlemail.com> wrote:
> How can I remove a command created using the @g.command decorator without having to reload leo.
Why do you want to do this? If you simply want to redefine what a
command means, you could use k.registerCommand::
c.k.registerCommand(command_name,
shortcut=None,
func=yourNewFunction)
Edward