I’d like to define a keyboard shortcut to “Open git repository” (available from context menu)
Are there any keybinding available for the above, or are they still yet to come please?
Thanks!
I’d like to define a keyboard shortcut to “Open git repository” (available from context menu)
Are there any keybinding available for the above, or are they still yet to come please?
Thanks!
Top tip: the context menu entries trigger commands, so you can make your own keyboard shortcuts for them. In this case, the command is sublime_merge_open_repo
. Also available are sublime_merge_file_history
and
sublime_merge_blame_file
. Find out how to configure key bindings here: https://www.sublimetext.com/docs/3/key_bindings.html
That worked, but how would I find these commands on my own? I can’t find sublime_merge_open_repo
documented anywhere.
Just for anyone who still curious:
sublime.log_commands(True) is very helpful, you can add keybinding for some build in commands, e.g. “Open Containing Folder”, “Copy File Path” …