Shortcut key for displaying unsaved changes in Sublime Text 3

How to set hotkey for right key -> show unsaved changes in Sublime Text 3?

I tried

{ "keys": ["alt+f10"], "command": "show_unsaved_change" },

      

but that won't work.

+3


source to share


1 answer


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

:



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

      

+6


source







All Articles