mirror of
https://github.com/heyman/heynote.git
synced 2024-11-22 16:03:28 +01:00
924fd4b226
Add Settings dialog. Started implementing Emacs-like keymap.
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()
|
|
}
|
|
}
|
|
}
|