Fix: allow exclamation to open quicklaunch (#3475)

pull/3489/head
Jesus Lopez 6 months ago committed by GitHub
parent a9ad2a2146
commit 1144f4dfa0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -227,7 +227,8 @@ function Home({ initialSettings }) {
(e.key.length === 1 &&
e.key.match(/(\w|\s|[à-ü]|[À-Ü]|[\w\u0430-\u044f])/gi) &&
!(e.altKey || e.ctrlKey || e.metaKey || e.shiftKey)) ||
e.key.match(/([à-ü]|[À-Ü])/g) || // accented characters may require modifier keys
// accented characters and the bang may require modifier keys
e.key.match(/([à-ü]|[À-Ü]|!)/g) ||
(e.key === "v" && (e.ctrlKey || e.metaKey))
) {
setSearching(true);

Loading…
Cancel
Save