diff options
| author | Phil Crosby | 2014-07-24 14:28:45 -0700 | 
|---|---|---|
| committer | Phil Crosby | 2014-07-24 14:28:45 -0700 | 
| commit | 921471902b95c52e8552999bfa49b26c11cc6307 (patch) | |
| tree | d67c04a6b8366d61c719a94f29008d4180d28750 | |
| parent | 825e311fb16dbbe73a299e64e35b4bc10cc02bf2 (diff) | |
| parent | 6bc7d2bbd8bb096feca00c84897af75458aed687 (diff) | |
| download | vimium-921471902b95c52e8552999bfa49b26c11cc6307.tar.bz2 | |
Merge pull request #1101 from mijoharas/master
added custom key mapping for movetableft and movetabright to fix #1100
| -rw-r--r-- | background_scripts/commands.coffee | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index 376461ba..35c94bb9 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -161,6 +161,8 @@ defaultKeyMappings =    "J": "previousTab"    "gt": "nextTab"    "gT": "previousTab" +  "<<": "moveTabLeft" +  ">>": "moveTabRight"    "g0": "firstTab"    "g$": "lastTab" | 
