mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-21 09:49:14 +00:00
small change to key bindings reviewd allready didnt check it in yet. bug=20146
This commit is contained in:
parent
129d114d6a
commit
392737f5e2
@ -15,10 +15,6 @@
|
||||
command="cmd_charPrevious"/>
|
||||
<handler type="keypress" id="key_right" keycode="VK_RIGHT" alt="false" shift="false" control="false"
|
||||
command="cmd_charNext"/>
|
||||
<handler type="keypress" id="key_left" keycode="VK_UP" alt="false" shift="false" control="false"
|
||||
command="cmd_charPrevious"/>
|
||||
<handler type="keypress" id="key_right" keycode="VK_DOWN" alt="false" shift="false" control="false"
|
||||
command="cmd_charNext"/>
|
||||
<handler type="keypress" id="key_pageup" keycode="VK_PAGE_UP" alt="false" shift="false" control="false"
|
||||
command="cmd_scrollPageUp"/>
|
||||
<handler type="keypress" id="key_pagedown" keycode="VK_PAGE_DOWN" alt="false" shift="false" control="false"
|
||||
@ -32,10 +28,6 @@
|
||||
command="cmd_selectCharPrevious"/>
|
||||
<handler type="keypress" id="key_rightshift" keycode="VK_RIGHT" shift="true" alt="false" control="false"
|
||||
command="cmd_selectCharNext"/>
|
||||
<handler type="keypress" id="key_leftshift" keycode="VK_UP" shift="true" alt="false" control="false"
|
||||
command="cmd_selectCharPrevious"/>
|
||||
<handler type="keypress" id="key_rightshift" keycode="VK_DOWN" shift="true" alt="false" control="false"
|
||||
command="cmd_selectCharNext"/>
|
||||
<handler type="keypress" id="key_leftcontrol" keycode="VK_LEFT" control="true" alt="false" shift="false"
|
||||
command="cmd_wordPrevious"/>
|
||||
<handler type="keypress" id="key_rightcontrol" keycode="VK_RIGHT" control="true" alt="false" shift="false"
|
||||
|
@ -6,10 +6,14 @@
|
||||
|
||||
<binding name="inputFields" extends="resource:/chrome/htmlBindings.xml#inputFieldsBase">
|
||||
<handlers>
|
||||
<handler type="keypress" id="key_up" keycode="VK_UP" alt="false"
|
||||
<handler type="keypress" id="key_up" keycode="VK_UP" alt="false" shift="false" control="false"
|
||||
command="cmd_charPrevious"/>
|
||||
<handler type="keypress" id="key_down" keycode="VK_DOWN" alt="false"
|
||||
<handler type="keypress" id="key_down" keycode="VK_DOWN" alt="false" shift="false" control="false"
|
||||
command="cmd_charNext"/>
|
||||
<handler type="keypress" id="key_leftshift" keycode="VK_UP" shift="true" alt="false" control="false"
|
||||
command="cmd_selectCharPrevious"/>
|
||||
<handler type="keypress" id="key_rightshift" keycode="VK_DOWN" shift="true" alt="false" control="false"
|
||||
command="cmd_selectCharNext"/>
|
||||
</handlers>
|
||||
</binding>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user