Cmd/Ctrl-click now opens page in new window

This commit is contained in:
Zef Hemel
2022-10-29 09:23:12 +02:00
parent 540af411a0
commit bef2c4c62b
4 changed files with 26 additions and 8 deletions
+2 -1
View File
@@ -48,8 +48,9 @@ export function editorSyscalls(editor: Editor): SysCallMapping {
name: string,
pos: number | string,
replaceState = false,
newWindow = false,
) => {
await editor.navigate(name, pos, replaceState);
await editor.navigate(name, pos, replaceState, newWindow);
},
"editor.reloadPage": async () => {
await editor.reloadPage();