Skip to content

Instantly share code, notes, and snippets.

@arsham
Created January 7, 2015 11:52
Show Gist options
  • Save arsham/47341210af22803eaae6 to your computer and use it in GitHub Desktop.
Save arsham/47341210af22803eaae6 to your computer and use it in GitHub Desktop.
A Sublime Text Macro to convert 2 spaces indentions to 4
[
{
"args": null,
"command": "select_all"
},
{
"args": {
"setting": "tab_size",
"value": 2
},
"command": "set_setting"
},
{
"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