1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-03 15:24:11 +01:00

"enter" is an alias for "return" or "cr"

This commit is contained in:
Martin Stubenschrott
2007-08-10 18:30:23 +00:00
parent f9e0238ff0
commit 2a4cfbc4e3
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
<pre> <pre>
2007-07-02: 2007-07-02:
* version 0.5 * version 0.5
* vimperator.events.feedkeys("2zi") support for scripts
* Ctrl-U/Ctrl-D for scrolling the window up/down and the associated * Ctrl-U/Ctrl-D for scrolling the window up/down and the associated
'scroll' option 'scroll' option
* files in ~/.vimperator/plugin/ are auto-sourced * files in ~/.vimperator/plugin/ are auto-sourced

View File

@@ -81,7 +81,7 @@ function Events() //{{{
[ KeyEvent.DOM_VK_ESCAPE, ["Esc", "Escape"] ], [ KeyEvent.DOM_VK_ESCAPE, ["Esc", "Escape"] ],
[ KeyEvent.DOM_VK_LEFT_SHIFT, ["<"] ], [ KeyEvent.DOM_VK_LEFT_SHIFT, ["<"] ],
[ KeyEvent.DOM_VK_RIGHT_SHIFT, [">"] ], [ KeyEvent.DOM_VK_RIGHT_SHIFT, [">"] ],
[ KeyEvent.DOM_VK_RETURN, ["Return", "CR"] ], [ KeyEvent.DOM_VK_RETURN, ["Return", "CR", "Enter"] ],
[ KeyEvent.DOM_VK_TAB, ["Tab"] ], [ KeyEvent.DOM_VK_TAB, ["Tab"] ],
[ KeyEvent.DOM_VK_DELETE, ["Del"] ], [ KeyEvent.DOM_VK_DELETE, ["Del"] ],
[ KeyEvent.DOM_VK_BACK_SPACE, ["BS"] ], [ KeyEvent.DOM_VK_BACK_SPACE, ["BS"] ],