Forked from joshmfrankel/convertTwoSpacesToFour.sublime-macro
Last active
January 3, 2016 10:59
-
-
Save djekl/8453622 to your computer and use it in GitHub Desktop.
This now doesn't leave the whole text selected :)
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": { | |
"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" | |
}, | |
{ | |
"args": | |
{ | |
"by": "lines", | |
"forward": false | |
}, | |
"command": "move" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment