1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00

Hotkey for Windows

This commit is contained in:
Dick Choi
2016-01-09 20:36:27 +09:00
parent d26ffdbe1a
commit 572a0ac266
3 changed files with 6 additions and 4 deletions

View File

@@ -7,9 +7,11 @@ const jetpack = require('fs-jetpack')
const mainWindow = require('./main-window')
const nodeIpc = require('@rokt33r/node-ipc')
const OSX = global.process.platform === 'darwin'
const defaultKeymap = {
toggleFinder: 'Cmd + alt + s',
toggleMain: 'Cmd + alt + v'
toggleFinder: OSX ? 'Cmd + alt + s' : 'Super + alt + v',
toggleMain: OSX ? 'Cmd + alt + v' : 'Super + alt + s'
}
const keymapFilename = 'keymap.json'