Answers for "sublime text comment shortcut"

0

aliginng code short cut in sublime

{ "keys": ["f12"], "command": "reindent", "args": {"single_line": false} }
Posted by: Guest on August-25-2020
-1

shortcut for auto format in sublime text 3

{"keys": ["alt+shift+f"], "command": "reindent", "args": {"single_line": false}}
Posted by: Guest on August-30-2020
-1

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 } }
Posted by: Guest on February-17-2021
0

aliginng code short cut in sublime

{ "keys": ["f12"], "command": "reindent", "args": {"single_line": false} }
Posted by: Guest on August-25-2020
-1

shortcut for auto format in sublime text 3

{"keys": ["alt+shift+f"], "command": "reindent", "args": {"single_line": false}}
Posted by: Guest on August-30-2020
-1

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 } }
Posted by: Guest on February-17-2021

Browse Popular Code Answers by Language