I was to use the keyboard shortcut for convert case / upper case in Sublime 3 for Mac. The normal keybinding is command-U, but that does not work. I understand how in theory I can assign a new keyboard shortcut to a command, but how do I find out what the name of the command is?
How to map convert to uppercase to new shortcut
r-stein
#2
If you know how to execute the command you can use my KeybindingHelper package. There you can see the executed commands and easily create a keybinding by copying and pasting them.
You can also manually open the ST console and write sublime.log_commands(True)
Otherwise you can open the default keybindings (or keybindings of that package) and search for the command.
PS: The command name is upper_case
.
1 Like