aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Blott2015-09-09 11:11:34 +0100
committerStephen Blott2015-09-09 11:11:34 +0100
commit25d980d3ac9a662474f712ff31fab710ce5d5287 (patch)
tree1ef8ff97126df3369970ae0ef86bc1c4163fec56
parent2dc3ecf1caae1937e03d458e877708af0030b132 (diff)
downloadvimium-25d980d3ac9a662474f712ff31fab710ce5d5287.tar.bz2
Alt modifier in vomnibar opens in new tab.
-rw-r--r--pages/vomnibar.coffee2
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" ]