How can I set a keybinding for Find problems in help for the plug-in `HyperHelpAuthor?
I don’t know the name of the command.
How can I set a keybinding for Find problems in help for the plug-in `HyperHelpAuthor?
I don’t know the name of the command.
You can turn on the command logging from the ST console with sublime.log_commands(True) and then execute the command you are interested in. Both command name and args may be shown.
this should be correct:
[
// Reload the current help file and help index.
{
"keys": ["f6"], "command": "hyperhelp_author_lint",
"context": [
{ "key": "hyperhelp.is_help", "operator": "equal", "operand": true }
]
},
{
"keys": ["f6"], "command": "hyperhelp_author_lint",
"context": [
{ "key": "hyperhelp.is_help_index", "operator": "equal", "operand": true }
]
},
]