mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 09:46:22 +00:00
refs #226 Adds shortcuts which move next note and prior note to main-menu
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user