Skip to content

Instantly share code, notes, and snippets.

@drivelous
Created January 17, 2021 07:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drivelous/aa8dc907de34efa3e462c65a96e05f09 to your computer and use it in GitHub Desktop.
Save drivelous/aa8dc907de34efa3e462c65a96e05f09 to your computer and use it in GitHub Desktop.
Sublime Text Macro for setting 2 space indentation to 4
[
{
"command": "expand_tabs",
"args": {"set_translate_tabs": true}
},
{
"command": "set_setting",
"args": {"setting": "tab_size", "value": 2}
},
{
"command": "select_all",
"args": null
},
{
"command": "unexpand_tabs",
"args": {"set_translate_tabs": true}
},
{
"command": "set_setting",
"args": {"setting": "tab_size", "value": 4}
},
{
"command": "expand_tabs",
"args": {"set_translate_tabs": true}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment