1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00

refs #226 Adds shortcuts which move next note and prior note to main-menu

This commit is contained in:
asmsuechan
2017-01-14 10:09:39 +09:00
parent b9e6a56a83
commit 41977e8726

View File

@@ -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',