diff options
| author | ilya | 2010-06-22 17:27:23 -0700 |
|---|---|---|
| committer | ilya | 2010-06-22 17:27:23 -0700 |
| commit | 11c446e91991f474f0e74bcf1b17fe53d55fbaca (patch) | |
| tree | 0895459db85bacf6f5275b1b48f1582e27a9a694 | |
| parent | 51f7d1db43b713539411b3ea7d76d8585ed92b99 (diff) | |
| download | vimium-11c446e91991f474f0e74bcf1b17fe53d55fbaca.tar.bz2 | |
Added Jez's new goUp function to the README and to the command reference.
| -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: |
