mirror of
https://github.com/heyman/heynote.git
synced 2024-11-23 00:13:08 +01:00
28 lines
956 B
JavaScript
28 lines
956 B
JavaScript
|
import { isMac } from "./detect-platform"
|
||
|
|
||
|
|
||
|
export function onBeforeInputEvent({win, event, input, currentKeymap}) {
|
||
|
//console.log("keyboard event", input)
|
||
|
let metaKey = "alt"
|
||
|
if (isMac) {
|
||
|
metaKey = "meta"
|
||
|
}
|
||
|
if (currentKeymap === "emacs") {
|
||
|
/**
|
||
|
* When using Emacs keymap, we can't bind shortcuts for copy, cut and paste in the the renderer process
|
||
|
* using Codemirror's bind function. Therefore we have to bind them in electron land, and send
|
||
|
* cut, paste and copy to window.webContents
|
||
|
*/
|
||
|
if (input.key === "y" && input.control) {
|
||
|
event.preventDefault()
|
||
|
win.webContents.paste()
|
||
|
} else if (input.key === "w" && input.control) {
|
||
|
event.preventDefault()
|
||
|
win.webContents.cut()
|
||
|
} else if (input.key === "w" && input[metaKey]) {
|
||
|
event.preventDefault()
|
||
|
win.webContents.copy()
|
||
|
}
|
||
|
}
|
||
|
}
|