aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorilya2010-06-22 17:58:24 -0700
committerilya2010-06-22 17:58:24 -0700
commit59b9bc14242976489ac570e9a3135e6aa0ce122e (patch)
tree1540ad5be701715bf1679e42d4e85a0ff031413e
parent11c446e91991f474f0e74bcf1b17fe53d55fbaca (diff)
downloadvimium-59b9bc14242976489ac570e9a3135e6aa0ce122e.tar.bz2
add goUp to the readme command listing - this needs to be deprecated for something auto generated
-rw-r--r--README.markdown3
-rw-r--r--background_page.html1
2 files changed, 3 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown
index 42b0f3ec..2e7c431a 100644
--- a/README.markdown
+++ b/README.markdown
@@ -44,7 +44,8 @@ Navigating the current page:
n cycle forward to the next find match
N cycle backward to the previous find match
i enter insert mode -- all commands will be ignored until you hit esc to exit
- y copy the current url to the clipboard
+ yy copy the current url to the clipboard
+ gu go up one level in the URL hierarchy
Navigating your history:
H go back in history
diff --git a/background_page.html b/background_page.html
index 0f923869..1109b0e0 100644
--- a/background_page.html
+++ b/background_page.html
@@ -573,6 +573,7 @@
// case for new installs.
if (!localStorage.previousVersion)
localStorage.previousVersion = currentVersion;
+ console.log("previousVersion: " + localStorage.previousVersion);
return compareVersions(currentVersion, localStorage.previousVersion) == 1;
}