diff options
| -rw-r--r-- | README.markdown | 1 | ||||
| -rw-r--r-- | commands.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown index 4904ff2c..42b0f3ec 100644 --- a/README.markdown +++ b/README.markdown @@ -83,6 +83,7 @@ Release Notes - Vimium now runs on pages with file:/// and ftp:/// - The Options page is now linked from the Help dialog. - Arrow keys and function keys can now be mapped using <left>, <right>, <up>, <down>, <f1>, <f2>, etc. in the mappings interface. +- There is a new command `goUp` (mapped to `gu` by default) that will go up one level in the URL hierarchy. For example: from http://vimium.github.com/foo/bar to http://vimium.github.com/foo. At the moment, `goUp` does not support command repetition. - Bug fixes and optimizations. 1.17 (04/18/2010) diff --git a/commands.js b/commands.js index 2a180966..0adbf3b9 100644 --- a/commands.js +++ b/commands.js @@ -168,7 +168,7 @@ var commandGroups = { pageNavigation: ["scrollDown", "scrollUp", "scrollLeft", "scrollRight", "scrollToTop", "scrollToBottom", "scrollPageDown", "scrollPageUp", "scrollFullPageDown", - "reload", "toggleViewSource", "zoomIn", "zoomOut", "copyCurrentUrl", + "reload", "toggleViewSource", "zoomIn", "zoomOut", "copyCurrentUrl", "goUp", "enterInsertMode", "activateLinkHintsMode", "activateLinkHintsModeToOpenInNewTab", "enterFindMode", "performFind", "performBackwardsFind"], historyNavigation: |
