diff options
| author | Stephen Blott | 2015-02-03 15:32:00 +0000 | 
|---|---|---|
| committer | Stephen Blott | 2015-02-03 15:32:00 +0000 | 
| commit | d22a66f91a12aef832a87f39a1376b2f97fcfe94 (patch) | |
| tree | 999e83ab6e65710f3a00c41b651625b262411a8d /lib/keyboard_utils.coffee | |
| parent | 71b609e5e23a894a551884f118d3625251c7aad3 (diff) | |
| parent | b082b11942dac88cff4ddb22ae0bc4426cf98bf5 (diff) | |
| download | vimium-d22a66f91a12aef832a87f39a1376b2f97fcfe94.tar.bz2 | |
Merge branch 'find-mode-history'
Conflicts:
	content_scripts/vimium_frontend.coffee
Diffstat (limited to 'lib/keyboard_utils.coffee')
| -rw-r--r-- | lib/keyboard_utils.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lib/keyboard_utils.coffee b/lib/keyboard_utils.coffee index 30d99656..693c9b1c 100644 --- a/lib/keyboard_utils.coffee +++ b/lib/keyboard_utils.coffee @@ -1,7 +1,7 @@  KeyboardUtils =    keyCodes:      { ESC: 27, backspace: 8, deleteKey: 46, enter: 13, space: 32, shiftKey: 16, ctrlKey: 17, f1: 112, -    f12: 123, tab: 9 } +    f12: 123, tab: 9, downArrow: 40, upArrow: 38 }    keyNames:      { 37: "left", 38: "up", 39: "right", 40: "down" } | 
