Hi,
I'm trying to create emacs-style bindings for XXE. Specifically, I've
got the following bindings in my customize.xxe file, but when I run XXE,
I get a message that the commands are unknown. Am I doing something wrong?
<!-- remove the binding of Ctrl-X to Cut -->
<binding>
<keyPressed code="X" modifiers="ctrl"/>
</binding>
<!-- now define some Ctrl-X prefix commands -->
<binding>
<keyPressed code="X" modifiers="ctrl"/>
<keyPressed code="S" modifiers="ctrl"/>
<command name="XXE.save" parameter=""/>
</binding>
<binding>
<keyPressed code="X" modifiers="ctrl"/>
<keyPressed code="W" modifiers="ctrl"/>
<command name="XXE.saveAs" parameter=""/>
</binding>
<binding>
<keyPressed code="X" modifiers="ctrl"/>
<keyPressed code="F" modifiers="ctrl"/>
<command name="XXE.open" parameter=""/>
</binding>
<binding>
<keyPressed code="X" modifiers="ctrl"/>
<keyPressed code="K"/>
<command name="XXE.close" parameter=""/>
</binding>
The error message I get is this:
Errors found in configuration files
customize.xxe
command triggered by "Ctrl-X Ctrl-W" is unknown
command triggered by "Ctrl-X Ctrl-F" is unknown
command triggered by "Ctrl-X K" is unknown
command triggered by "Ctrl-X Ctrl-S" is unknown
Thanks for any help,
David Flanagan