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

Add a shortcut which jumps to top by Ctrl-G

This commit is contained in:
asmsuechan
2017-03-18 23:45:23 -07:00
parent b7ca4668e9
commit cec4b3132c
2 changed files with 32 additions and 0 deletions

View File

@@ -183,6 +183,13 @@ var view = {
mainWindow.webContents.send('list:prior')
}
},
{
label: 'Jump to Top',
accelerator: 'Control + G',
click () {
mainWindow.webContents.send('list:top')
}
},
{
type: 'separator'
},