diff --git a/components/LiveControls.tsx b/components/LiveControls.tsx index 8bbf9374..5ddfb7ef 100644 --- a/components/LiveControls.tsx +++ b/components/LiveControls.tsx @@ -104,6 +104,12 @@ const main = () => { "pathTemplate", encodeURIComponent(globalThis.window.LIVE.page.pathTemplate || "/*"), ); + + if (event.ctrlKey && event.key === ".") { + globalThis.window.open(href, "_blank"); + return; + } + globalThis.window.location.href = `${href}`; } };