W
W
william smith2019-10-03 03:35:37
Sublime Text
william smith, 2019-10-03 03:35:37

Where can I get a list of commands to set up Sublime Text hotkeys?

The hotkey settings config contains settings like
{ "keys": ["ctrl+shift+n"], "command": "new_window" }
is there a list of these commands and their parameters somewhere?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
K
Korben5E, 2019-10-03
@Korben5E

Hotkeys there strongly depend on the installed add-ons,
but in general - Preferences -> Key Bindings
and on the program website, for example,
https://sublimetext.ru/command-group/%D1%83%D0%BF%...

E
eskanderdon, 2020-03-26
@eskanderdon

Enable LOG activity logging in the Sublime console.

  • Open console CTRL + ` (ё)
  • Enter the command:sublime.log_commands(True)
  • Now a list of actions is displayed in the console

For example, let's make hot keys (a combination of hot keys) to hide|display tabs. Menu
bar \ View \ Show tabs (Hide tabs
)command: toggle_tabs
{ 
  "keys": ["ctrl+shift+t"], "command": "toggle_tabs"  
},

Finally, don't forget to disable loggingsublime.log_commands(False)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question