aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorilya2010-01-06 21:44:27 -0800
committerilya2010-01-06 21:44:27 -0800
commit293418c6d5a418d56a1141cd30d03cb1fe2713a8 (patch)
tree647394b97cd9ae5f0551de686a6b3a7494530cd9
parent8334a4d713206321d90fc076bb5d8929b09f7756 (diff)
downloadvimium-293418c6d5a418d56a1141cd30d03cb1fe2713a8.tar.bz2
'yy' instead of 'y' for the copy url to clipboard command.
-rw-r--r--README.markdown2
-rw-r--r--background_page.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.markdown b/README.markdown
index b51b1a67..ee3d3270 100644
--- a/README.markdown
+++ b/README.markdown
@@ -57,7 +57,7 @@ Release Notes
1.11 (Current, unreleased)
- Commands 'gt' & 'gT' to move to the next & previous tab.
-- Command 'y' to yank (copy) the current tab's url to the clipboard.
+- Command 'yy' to yank (copy) the current tab's url to the clipboard.
- Better Linux support.
1.1 (01/03/2010)
diff --git a/background_page.html b/background_page.html
index 1c514ed5..26941cc8 100644
--- a/background_page.html
+++ b/background_page.html
@@ -247,7 +247,7 @@
keyToCommandRegistry['n'] = 'performFind';
keyToCommandRegistry['N'] = 'performBackwardsFind';
- keyToCommandRegistry['y'] = 'copyCurrentUrl';
+ keyToCommandRegistry['yy'] = 'copyCurrentUrl';
keyToCommandRegistry['J'] = nextTab;
keyToCommandRegistry['K'] = previousTab;