Return extnNameList with keybinding section names removed.
(self, extnNameList)
| 452 | return extns |
| 453 | |
| 454 | def RemoveKeyBindNames(self, extnNameList): |
| 455 | "Return extnNameList with keybinding section names removed." |
| 456 | return [n for n in extnNameList if not n.endswith(('_bindings', '_cfgBindings'))] |
| 457 | |
| 458 | def GetExtnNameForEvent(self, virtualEvent): |
| 459 | """Return the name of the extension binding virtualEvent, or None. |