mode
mode

Reputation: 33

Shortcut key to show unsaved changes in Sublime Text 3

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

Answers (1)

Brandon - Free Palestine
Brandon - Free Palestine

Reputation: 16656

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

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

Upvotes: 6

Related Questions