diff options
| author | ilya | 2010-08-29 18:06:03 -0700 |
|---|---|---|
| committer | ilya | 2010-08-29 18:06:03 -0700 |
| commit | 19732c8c11c4433b36e289719535caf64da3e6e6 (patch) | |
| tree | aa997a97374e57247096e9d03b2ebc198f8e9695 | |
| parent | 9b39f14445920eff56525b86bc99328851a3f8ae (diff) | |
| download | vimium-19732c8c11c4433b36e289719535caf64da3e6e6.tar.bz2 | |
Change default keys for scrollToLeft and scrollToRight to be zH, zL respectively.
| -rw-r--r-- | commands.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands.js b/commands.js index a09d07dc..477e5cd3 100644 --- a/commands.js +++ b/commands.js @@ -83,8 +83,8 @@ function clearKeyMappingsAndSetDefaults() { mapKeyToCommand('gg', 'scrollToTop'); mapKeyToCommand('G', 'scrollToBottom'); - mapKeyToCommand('ga', 'scrollToLeft'); - mapKeyToCommand('gd', 'scrollToRight'); + mapKeyToCommand('zH', 'scrollToLeft'); + mapKeyToCommand('zL', 'scrollToRight'); mapKeyToCommand('<c-e>', 'scrollDown'); mapKeyToCommand('<c-y>', 'scrollUp'); mapKeyToCommand('<c-d>', 'scrollPageDown'); |
