Fix DDG's bang feature by changing quick launch key from "!" to "q!"

This commit is contained in:
Özenç Bilgili 2020-01-18 02:17:23 +03:00
parent 1ac10df5e3
commit 93fa3af985

View File

@ -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);