Created
September 9, 2013 19:40
-
-
Save rlmattax/6500450 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import sublime, sublime_plugin, os | |
class ExpandTabsOnSave(sublime_plugin.EventListener): | |
# Run ST's 'expand_tabs' command when saving a file | |
def on_pre_save(self, view): | |
if view.settings().get('expand_tabs_on_save') == 1: | |
view.window().run_command('expand_tabs') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment