From 93fa3af985685fbf433a1e6191021578609b5236 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96zen=C3=A7=20Bilgili?= Date: Sat, 18 Jan 2020 02:17:23 +0300 Subject: [PATCH] Fix DDG's bang feature by changing quick launch key from "!" to "q!" --- js/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/script.js b/js/script.js index fc79c2f..4a6110e 100644 --- a/js/script.js +++ b/js/script.js @@ -885,7 +885,7 @@ class Form { _handleInput() { const newQuery = this._inputEl.value; const isHelp = newQuery === '?'; - const isLaunch = newQuery === '!'; + const isLaunch = newQuery === 'q!'; const isInvert = newQuery === 'invert!'; const isShowKeys = newQuery === 'keys!'; const { isKey } = this._parseQuery(newQuery);