sublimetext3 - Shortcut key to show unsaved changes in Sublime Text 3 -
how can set shortcut key right key -> show unsaved changes in sublime text 3?
i have tried
{ "keys": ["alt+f10"], "command": "show_unsaved_change" },
but not work.
you have wrong command name, correct command name diff_changes
:
{ "keys": ["ctrl+alt+d"], "command": "diff_changes" }
Comments
Post a Comment