Forked from joshmfrankel/convertTwoSpacesToFour.sublime-macro
Created
December 28, 2015 17:29
-
-
Save reider-roque/57766da708f1599f1f8c to your computer and use it in GitHub Desktop.
Sublime: Convert 2 Spaces to 4
This file contains 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
[ | |
{ | |
"args": null, | |
"command": "select_all" | |
}, | |
{ | |
"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