Created
September 7, 2015 02:28
-
-
Save snowman-repos/914b5205288b2fbd7f49 to your computer and use it in GitHub Desktop.
Sublime key binding for converting to tabs
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
// requires the chain of command sublime plugin | |
// https://github.com/jisaacks/ChainOfCommand | |
[ | |
{ | |
"keys": ["shift+alt+a"], | |
"command": "chain", | |
"args": { | |
"commands": [ | |
["set_setting", {"setting": "tab_size", "value": 2}], | |
["unexpand_tabs", {"set_translate_tabs" : true}], | |
["set_setting", {"setting": "tab_size", "value": 4}] | |
] | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment