Vitaly Harisov wrote:
> 
> I trying to rebind ctrl/shift + ins to copy/paste commands
> for text selection.
> 
> This binding works fine:
> 
>     <!-- Copy to clipboard (ctrl + ins) -->
>     <binding>
>         <keyPressed code="INSERT" modifiers = "ctrl"/>
>         <command name="copy"/>
>     </binding>
> 
> But this not works:
> 
>     <!-- Paste from clipboard (shift + ins) -->
>     <binding>
>         <keyPressed code="INSERT" modifiers = "shift"/>
>         <command name="paste" parameter="toOrInto"/>
>     </binding>
> 
> Can you help me?

I have copied and paste the 2 above bindings (i.e. char for char) in my 
customize.xxe and restarted XXE. Both bindings works fine for me (I've 
tested this on Windows with XXE V2.8).

* These bindings must be added to customize.xxe and not to the XML 
application configuration file (e.g. docbook.xxe).

* May be you are trying to use "paste toOrInto" in a ``context'' where 
this is not allowed.


Reply via email to