aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;