Forked from beaugunderson/Default (OSX).sublime-keymap
Created
September 14, 2016 19:28
-
-
Save tannerhodges/65a1c742c7fd7f42580223fe6854a394 to your computer and use it in GitHub Desktop.
Sublime Text macros for converting to and from 2 and 4 space indentation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ | |
"keys": ["ctrl+2"], | |
"command": "run_macro_file", | |
"args": { | |
"file": "Packages/User/to-2.sublime-macro" | |
} | |
}, | |
{ | |
"keys": ["ctrl+4"], | |
"command": "run_macro_file", | |
"args": { | |
"file": "Packages/User/to-4.sublime-macro" | |
} | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "args": { "set_translate_tabs": true }, "command": "unexpand_tabs" }, | |
{ "args": { "setting": "tab_size", "value": 2 }, "command": "set_setting" }, | |
{ "args": { "set_translate_tabs": true }, "command": "expand_tabs" } | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "args": { "set_translate_tabs": true }, "command": "unexpand_tabs" }, | |
{ "args": { "setting": "tab_size", "value": 4 }, "command": "set_setting" }, | |
{ "args": { "set_translate_tabs": true }, "command": "expand_tabs" } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment