On Sun, May 18, 2008 at 9:49 AM, TL <[EMAIL PROTECTED]> wrote: > > Why isn't the "auto-complete = None" and the "set-extend-mode = None" > command > unmapping the period and 'v' keys?
Because that's not what x = None does at present. Keep in mind that *only* mode bindings are in effect for any mode, so there is no need to unbind keys in modes. But mode bindings end as soon as the mode ends. When in doubt, looking at the code in k.masterKeyHandler is the ultimate authority. You can get a pretty good trace of k.masterKeyHandler by changing the line: trace = (False or self.trace_masterKeyHandler) and not g.app.unitTesting to: trace = (True or self.trace_masterKeyHandler) and not g.app.unitTesting Similar traces exist for k.getArg, k.masterCommandHandler, etc. Edward --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "leo-editor" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/leo-editor?hl=en -~----------~----~----~----~------~----~------~--~---
