From 41977e8726e58c9b40fe9dd01b595b426c7f2d87 Mon Sep 17 00:00:00 2001 From: asmsuechan Date: Sat, 14 Jan 2017 10:09:39 +0900 Subject: [PATCH] refs #226 Adds shortcuts which move next note and prior note to main-menu --- lib/main-menu.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/lib/main-menu.js b/lib/main-menu.js index e554e98a..1816bfaf 100644 --- a/lib/main-menu.js +++ b/lib/main-menu.js @@ -147,6 +147,23 @@ var view = { { type: 'separator' }, + { + label: 'Next Note', + accelerator: 'Control + J', + click: function () { + mainWindow.webContents.send('list:next') + } + }, + { + label: 'Prior Note', + accelerator: 'Control + U', + click: function () { + mainWindow.webContents.send('list:prior') + } + }, + { + type: 'separator' + }, { label: 'Focus Search', accelerator: 'Control + S',