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.
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.
You have the wrong command name, the correct command name is
diff_changes
: