1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-23 21:15:46 +01:00

commandline and MIW try to keep focus now

changed commandline handling in general
autosize MIW on new content
new handling should be more robust, but there may be bugs, please report
This commit is contained in:
Martin Stubenschrott
2007-08-12 00:03:44 +00:00
parent 5c3a8426b1
commit 27839f303d
5 changed files with 103 additions and 93 deletions

View File

@@ -105,12 +105,14 @@ the terms of any one of the MPL, the GPL or the LGPL.
onkeypress="vimperator.commandline.onMultilineOutputEvent(event)"/>
<textbox id="vimperator-multiline-input" class="plain" flex="1" rows="10" hidden="false" collapsed="true" multiline="true"
onkeypress="vimperator.commandline.onMultilineInputEvent(event);"/>
onkeypress="vimperator.commandline.onMultilineInputEvent(event);"
oninput="vimperator.commandline.onMultilineInputEvent(event);"
onblur="vimperator.commandline.onMultilineInputEvent(event);"/>
</vbox>
</toolbar>
<keyset id="mainKeyset">
<key id="key_open_vimbar" key=":" oncommand="vimperator.commandline.open(':', '', vimperator.modes.MODE_EX);" modifiers=""/>
<key id="key_open_vimbar" key=":" oncommand="vimperator.commandline.open(':', '', vimperator.modes.EX);" modifiers=""/>
<key id="key_stop" keycode="VK_ESCAPE" oncommand="vimperator.events.onEscape();"/>
<!-- other keys are handled inside vimperator.js event loop -->
</keyset>