diff options
| author | Stephen Blott | 2015-09-09 11:11:34 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2015-09-09 11:11:34 +0100 | 
| commit | 25d980d3ac9a662474f712ff31fab710ce5d5287 (patch) | |
| tree | 1ef8ff97126df3369970ae0ef86bc1c4163fec56 | |
| parent | 2dc3ecf1caae1937e03d458e877708af0030b132 (diff) | |
| download | vimium-25d980d3ac9a662474f712ff31fab710ce5d5287.tar.bz2 | |
Alt modifier in vomnibar opens in new tab.
| -rw-r--r-- | pages/vomnibar.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/pages/vomnibar.coffee b/pages/vomnibar.coffee index cf9ed7b0..742dba10 100644 --- a/pages/vomnibar.coffee +++ b/pages/vomnibar.coffee @@ -125,7 +125,7 @@ class VomnibarUI      return true unless action # pass through      openInNewTab = @forceNewTab || -      (event.shiftKey || event.ctrlKey || KeyboardUtils.isPrimaryModifierKey(event)) +      (event.shiftKey || event.ctrlKey || event.altKey || KeyboardUtils.isPrimaryModifierKey(event))      if (action == "dismiss")        @hide()      else if action in [ "tab", "down" ] | 
