add missing keybindings (to input, textareas, editors) for ctrl-home/end (with and without shift); r=akkana; sr=kin

This commit is contained in:
brade%netscape.com 2001-03-02 14:11:24 +00:00
Родитель 277181c660
Коммит 5af1328ebd
1 изменённых файлов: 22 добавлений и 0 удалений

Просмотреть файл

@ -46,6 +46,15 @@
command="cmd_selectBeginLine"/>
<handler event="keypress" id="key_endshift" keycode="VK_END" modifiers="shift"
command="cmd_selectEndLine"/>
<handler event="keypress" id="key_home" keycode="VK_HOME" modifiers="control"
command="cmd_beginLine"/>
<handler event="keypress" id="key_end" keycode="VK_END" modifiers="control"
command="cmd_endLine"/>
<handler event="keypress" id="key_homeshift" keycode="VK_HOME" modifiers="control,shift"
command="cmd_selectBeginLine"/>
<handler event="keypress" id="key_endshift" keycode="VK_END" modifiers="control,shift"
command="cmd_selectEndLine"/>
<handler event="keypress" id="key_leftcontrol" keycode="VK_LEFT" modifiers="control"
command="cmd_wordPrevious"/>
<handler event="keypress" id="key_rightcontrol" keycode="VK_RIGHT" modifiers="control"
@ -107,6 +116,16 @@
command="cmd_selectBeginLine"/>
<handler event="keypress" id="key_endshift" keycode="VK_END" modifiers="shift"
command="cmd_selectEndLine"/>
<handler event="keypress" keycode="VK_HOME" modifiers="control"
command="cmd_moveTop"/>
<handler event="keypress" keycode="VK_END" modifiers="control"
command="cmd_moveBottom"/>
<handler event="keypress" keycode="VK_HOME" modifiers="shift,control"
command="cmd_selectTop"/>
<handler event="keypress" keycode="VK_END" modifiers="shift,control"
command="cmd_selectBottom"/>
<handler event="keypress" id="key_leftcontrol" keycode="VK_LEFT" modifiers="control"
command="cmd_wordPrevious"/>
<handler event="keypress" id="key_rightcontrol" keycode="VK_RIGHT" modifiers="control"
@ -171,6 +190,9 @@
<handler event="keypress" keycode="VK_RIGHT" modifiers="shift,control" command="cmd_selectWordNext"/>
<handler event="keypress" keycode="VK_HOME" modifiers="shift,control" command="cmd_selectTop"/>
<handler event="keypress" keycode="VK_END" modifiers="shift,control" command="cmd_selectBottom"/>
<handler event="keypress" keycode="VK_HOME" modifiers="control" command="cmd_moveTop"/>
<handler event="keypress" keycode="VK_END" modifiers="control" command="cmd_moveBottom"/>
</handlers>
</binding>
</bindings>