diff options
| author | Stephen Blott | 2015-09-09 18:42:32 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-09-09 18:42:32 +0100 |
| commit | 0afb107722e8ab72e515bb0ddc3b1f75969e28f0 (patch) | |
| tree | 1ef8ff97126df3369970ae0ef86bc1c4163fec56 | |
| parent | 2dc3ecf1caae1937e03d458e877708af0030b132 (diff) | |
| parent | 25d980d3ac9a662474f712ff31fab710ce5d5287 (diff) | |
| download | vimium-0afb107722e8ab72e515bb0ddc3b1f75969e28f0.tar.bz2 | |
Merge pull request #1805 from smblott-github/vomnibar-alt-for-new-tab
Alt modifier on Enter 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" ] |
