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

Popular posts from this blog

xslt - Substring before throwing error -

Google Cloud Bigtable Durability/Availability Guarantees -

c# - Call C++ Native DLL in Managed Code -