I just created a simple plugin and would like to add a keyboard shortcut to run it. I created a Default.sublime-keymap
file in my Packages/User/ directory. The contents of that file:
[
{
"keys": ["ctrl+shift+l"],
"command": "add_line_numbers"
}
]
I saved all of my files and even restarted ST but when I press my keyboard shortcut I see a “no command for selector: noop” message in the console. The class name for my plugin is:
class AddLineNumbersCommand(sublime_plugin.TextCommand)