use CMD/meta key for opening link in a new tab on mac, #3303

This commit is contained in:
zadam
2022-11-10 23:16:41 +01:00
parent c6e766f5c6
commit 1b242a905b
2 changed files with 5 additions and 3 deletions

View File

@@ -343,7 +343,7 @@ export default class NoteTreeWidget extends NoteContextAwareWidget {
node.setFocus(true);
}
else if (event.ctrlKey) {
else if ((!utils.isMac() && event.ctrlKey) || (utils.isMac() && event.metaKey)) {
const notePath = treeService.getNotePath(node);
appContext.tabManager.openTabWithNoteWithHoisting(notePath);
}