aboutsummaryrefslogtreecommitdiffstats
path: root/background_page.html
diff options
context:
space:
mode:
authorPhil Crosby2011-01-30 18:04:45 -0800
committerPhil Crosby2011-01-30 18:09:22 -0800
commit35d58590b0e09e88c92ca3d49b5ba3b1ff622665 (patch)
tree675afce8b9a48553475d8c1921417f6a99639465 /background_page.html
parent4f2d27d850c4ea82adc367362bbee41f4943c1a6 (diff)
downloadvimium-35d58590b0e09e88c92ca3d49b5ba3b1ff622665.tar.bz2
Make "d" and "u" scroll up and down a page instead of closing and restoring tabs. This implements #274.
The motivation behind this change is that scrolling a page is far more common than closing a tab, and so those actions should be on a hotkey which doesn't require a modifier. Once you get used to scrolling without hitting ctrl, you won't be able to go back. For existing users, this change also adds a custom mapping for them in their preferences to preserve the old behavior as they upgrade from 1.21 to 1.22.
Diffstat (limited to 'background_page.html')
-rw-r--r--background_page.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/background_page.html b/background_page.html
index 87b3c9ad..d98967b4 100644
--- a/background_page.html
+++ b/background_page.html
@@ -686,6 +686,21 @@
if (localStorage["keyMappings"])
parseCustomKeyMappings(localStorage["keyMappings"]);
+ // In version 1.22, we changed the mapping for "d" and "u" to be scroll page down/up instead of close
+ // and restore tab. For existing users, we want to preserve existing behavior for them by adding some
+ // custom key mappings on their behalf.
+ if (localStorage.previousVersion == "1.21") {
+ var customKeyMappings = localStorage["keyMappings"] || "";
+ if ((keyToCommandRegistry["d"] || {}).command == "scrollPageDown")
+ customKeyMappings += "\nmap d removeTab";
+ if ((keyToCommandRegistry["u"] || {}).command == "scrollPageUp")
+ customKeyMappings += "\nmap u restoreTab";
+ if (customKeyMappings != "") {
+ localStorage["keyMappings"] = customKeyMappings;
+ parseCustomKeyMappings(customKeyMappings);
+ }
+ }
+
populateValidFirstKeys();
populateSingleKeyCommands();
if (shouldShowUpgradeMessage())