I’m creating a new package (my first) and it shows up fine in the package menu with one exception. The key binding is ctrl-F3 but it the command is missing the F3. It only shows “Ctrl+”.
Here is my key binding …
'.workspace':
'ctrl-F3': 'find-selection:find-next'
… and the menu code …
'menu': [
{
'label': 'Packages'
'submenu': [
'label': 'Find Selection'
'submenu': [
{ 'label': 'Find Next', 'command': 'find-selection:find-next' }
]
]
}
]
Am I doing something stupid or is this a menu bug?