From 7e01b4a33a7296e8101e16a37f7b88a4f4cab74e Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Thu, 21 Sep 2023 13:03:16 +0800 Subject: [PATCH] Ignore cmd/ctrl/shift/alt keys + middle clicks --- src/utils/handle-content-links.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/utils/handle-content-links.js b/src/utils/handle-content-links.js index f401acde..9637f211 100644 --- a/src/utils/handle-content-links.js +++ b/src/utils/handle-content-links.js @@ -6,6 +6,12 @@ function handleContentLinks(opts) { let { target } = e; target = target.closest('a'); if (!target) return; + + // If cmd/ctrl/shift/alt key is pressed or middle-click, let the browser handle it + if (e.metaKey || e.ctrlKey || e.shiftKey || e.altKey || e.which === 2) { + return; + } + const prevText = target.previousSibling?.textContent; const textBeforeLinkIsAt = prevText?.endsWith('@'); const textStartsWithAt = target.innerText.startsWith('@');