Sublime Forum

HyperHelp keybinding

#1

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.

0 Likes

#2

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.

1 Like

#3

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 }
        ]
    },
]
0 Likes