Sorry to disappoint you and to have made you loose your time. XXE V2.x is *not* flexible enough to allow you to do what you want.
To make it simple, you can define and install your own bindings once the document is openened. You cannot define and install bindings to open a document. XXE.open, XXE.save, etc, are currently only used to write macro-commands. David Flanagan wrote: > I'm an emacs addict (since 1987) looking to try XXE. But I'll only do > it if I can have my familiar emacs bindings. It looks like XXE is > flexible enough to do this, and I wonder if anyone has already done it. > > Can anyone point me to a pre-defined set of bindings? and: > 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

