hotkeys doesn't work properly after instulling our plugin, but we are don't use hotkeys at all. This is our manifest.json file:
{
"name": "Spelly",
"description": "Spell checker by Spelly",
"author": "Spelly Team",
"authorEmail": "dev@spelly.io",
"homepage": "https://spelly.io",
"version": "3.29.11",
"identifier": "com.spellychecker.spelly",
"appcast": "https://spelly.io/plugin/appcast.xml",
"bundleVersion": 1,
"compatibleVersion": "70.1",
"icon": "images/icon.png",
"commands": [
{
"name": "OpenDocument",
"identifier": "onOpenDocument",
"script": "./actions/onOpenDocument.ts",
"handlers": {
"actions": {
"OpenDocument": "onOpenDocument"
}
}
},
{
"name": "CloseDocument",
"identifier": "onCloseDocument",
"script": "./actions/onCloseDocument.ts",
"handlers": {
"actions": {
"CloseDocument": "onCloseDocument"
}
}
},
{
"name": "SelectionChanged",
"identifier": "onSelectionChanged",
"script": "./actions/onSelectionChanged.ts",
"handlers": {
"actions": {
"SelectionChanged.finish": "onSelectionChanged"
}
}
},
{
"name": "ChangeDocument",
"identifier": "onDocumentChanged",
"script": "./actions/onDocumentChanged.ts",
"handlers": {
"actions": {
"onDocumentChanged": "onDocumentChanged"
}
}
},
{
"name": "HandleURL",
"identifier": "runtime",
"script": "./actions/onHandleURL.ts",
"handlers": {
"actions": {
"HandleURL": "onHandleURL"
}
}
},
{
"name": "Restore",
"identifier": "restore",
"script": "./actions/onRestoreDocument.ts",
"handlers": {
"actions": {
"run": "onRestoreDocument"
}
}
},
{
"name": "Hide",
"identifier": "hide",
"script": "./actions/onHide.ts",
"handler": "onHide"
},
{
"name": "Add Right Offset",
"identifier": "add-offset",
"script": "./actions/onToggleOffset.ts",
"handler": "onAddOffset"
},
{
"name": "Remove Right Offset",
"identifier": "remove-offset",
"script": "./actions/onToggleOffset.ts",
"handler": "onRemoveOffset"
}
],
"menu": {
"title": "Spelly",
"items": ["restore", "hide", "-", "add-offset", "remove-offset"]
}
}