Sublime Forum

Defining the command name for key bindings

#1

Hello!
I tried to add the shortcut for some command and to finish the process I had to define the name of the command using console after I typed " sublime.commands_log(True)"
I got the error message :

Traceback (most recent call last):
File “”, line 1, in
AttributeError: ‘module’ object has no attribute ‘commands_log’

I’ll really appreciate someone’s help to fix this issue.

0 Likes

#2

the correct command for logging commands is sublime.log_commands(True) -> you just got the log and the commands the wrong way round is all :wink:

1 Like