Skip to content

Instantly share code, notes, and snippets.

@snowman-repos
Created September 7, 2015 02:28
Show Gist options
  • Save snowman-repos/914b5205288b2fbd7f49 to your computer and use it in GitHub Desktop.
Save snowman-repos/914b5205288b2fbd7f49 to your computer and use it in GitHub Desktop.
Sublime key binding for converting to tabs
// 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