Reputation: 33
How can I set the shortcut key for right key -> show unsaved changes in Sublime Text 3?
I have tried
{ "keys": ["alt+f10"], "command": "show_unsaved_change" },
but it does not work.
Upvotes: 3
Views: 3524
Reputation: 16656
You have the wrong command name, the correct command name is diff_changes
:
{ "keys": ["ctrl+alt+d"], "command": "diff_changes" }
Upvotes: 6