diff --git a/ChangeLog b/ChangeLog index 6f90efdc..471040d0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@
2007-07-02:
* version 0.5
+ * vimperator.events.feedkeys("2zi") support for scripts
* Ctrl-U/Ctrl-D for scrolling the window up/down and the associated
'scroll' option
* files in ~/.vimperator/plugin/ are auto-sourced
diff --git a/chrome/content/vimperator/events.js b/chrome/content/vimperator/events.js
index 05663ae2..48c71192 100644
--- a/chrome/content/vimperator/events.js
+++ b/chrome/content/vimperator/events.js
@@ -81,7 +81,7 @@ function Events() //{{{
[ KeyEvent.DOM_VK_ESCAPE, ["Esc", "Escape"] ],
[ KeyEvent.DOM_VK_LEFT_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_DELETE, ["Del"] ],
[ KeyEvent.DOM_VK_BACK_SPACE, ["BS"] ],