Daniel Dekany wrote:
> XXE 3.6.2 (when editing XHTML):
> 
> - If I press Page Down too near to the end of the document, it doesn't
>   move the caret correctly, or not at all. Even if the view port can't
>   move downwards a full "screen" anymore, the caret should still move
>   downwards one "screen" until it reaches the end of the document.
> 
> - Ctrl + End moves the view port to the last "screen" of document
>   correctly, but it forgets to move the caret to the end of the
>   document.
> 

Sorry but we have chosen not to interfere with the standard Java/Swing 
keyboard bindings (normally PAGE_UP, PAGE_DOWN, CTRL_PAGE_UP, 
CTRL_PAGE_DOWN, CTRL_HOME, CTRL_END, but this may depend on the platform 
running XXE) associated to the scrollbars/scrolled view.

A solution to your problem consists in adding the following custom 
bindings to your customize.xxe (or with Professional Edition, directly 
define these bindings using "Options|Customize Configuration|Add 
Keyboard Shortcut" -- 
http://www.xmlmind.com/xmleditor/_distrib/doc/help/com.xmlmind.xmleditapp.kit.part.AddKeyboardShortcutDialog.html)

---
   <cfg:binding>
     <cfg:keyPressed code="END" modifiers="ctrl"/>

     <cfg:command name="moveDotTo" parameter="documentEnd"/>
   </cfg:binding>

   <cfg:binding>
     <cfg:keyPressed code="HOME" modifiers="ctrl"/>

     <cfg:command name="moveDotTo" parameter="documentBegin"/>
   </cfg:binding>
---

See 
http://www.xmlmind.com/xmleditor/_distrib/doc/configure/bindings_generic.html


Reply via email to