Shortcut key to show unsaved changes in Sublime Text 3

3.5k views Asked by At

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.

1

There are 1 answers

3
Brandon - Free Palestine On BEST ANSWER

You have the wrong command name, the correct command name is diff_changes:

{ "keys": ["ctrl+alt+d"], "command": "diff_changes" }