Sublime Text change shortcuts code example
Example 1: shortcut for replace in sublime
ctrl+h for copy and replace
Example 2: sublime text comment shortcut
# Workaround for sublime comment bug:
Goto Preferences -> Key Bindings and paste this in
{ "keys": ["ctrl+7"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+7"], "command": "toggle_comment", "args": { "block": true } }