diff --git a/ChangeLog b/ChangeLog index 9191b21c..ffe50d49 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,12 +1,15 @@
 date:
 	* version 0.4
+	* Esc now doesn't stop loading the webpage, use Ctrl-c instead, :stop command added
+	* changed hinttags to work with dict.leo.org and hintstyle to work with digg.com
 	* :back! goes to beginning of history now
 	* diabled firefox 3.0 support for now, as there are just too many small
 	  bugs
-	* :help 
supported, :help set will show help for the :set command + * :help section supported, :help set will show help for the :set command (patch from Viktor Kojouharov) * :source support, and auto-sourcing ~/.vimperatorrc on startup + * :javascript < Up one directory, :cd goes to top location, [Backspace] command shortcut, use count (:3cd goes 3 levels up) 8 downloading of links to filesystem (:save ) diff --git a/chrome/content/vimperator/commands.js b/chrome/content/vimperator/commands.js index faff4038..54eaf3b5 100644 --- a/chrome/content/vimperator/commands.js +++ b/chrome/content/vimperator/commands.js @@ -326,6 +326,14 @@ var g_commands = [/*{{{*/ source, function (filter) { return get_file_completions(filter); } ], + [ + ["stop", "st"], + ["st[op]"], + "Stop loading
" + + "Stop loading current web page.", + BrowserStop, + null + ], [ ["tab"], ["tab {cmd}"], @@ -830,12 +838,19 @@ var g_mappings = [/*{{{*/ "When in 'ignorekeys' mode (activated by <I>), <C-v> will pass the next key to Vimperator instead of the webpage.", function(count) { addMode(MODE_ESCAPE_ONE_KEY); } ], + [ + [""], + [""], + "Stop loading
" + + "Stops loading the current webpage.", + BrowserStop, + ], [ ["", ""], // if you ever add/remove keys here, also check them in the onVimperatorKeypress() function ["", ""], "Cancel any operation
" + - "Stops loading the current webpage and exits any command line or hint mode.
"+ - "Also focuses the web page, in case a form field has focus, and eats our key presses.", + "Exits any command line or hint mode and returns to browser mode.
"+ + "Also focuses the web page, in case a form field has focus and eats our key presses.", onEscape ], diff --git a/chrome/content/vimperator/vimperator.js b/chrome/content/vimperator/vimperator.js index 9b809076..7dde3bc4 100644 --- a/chrome/content/vimperator/vimperator.js +++ b/chrome/content/vimperator/vimperator.js @@ -733,7 +733,7 @@ function onEscape() if (!hasMode(MODE_ESCAPE_ONE_KEY)) { setCurrentMode(MODE_NORMAL); - BrowserStop(); + // BrowserStop(); -> moved to hah.disableHahMode(); focusContent(true, true); }