Created
July 9, 2013 22:01
-
-
Save guillermorangel/5961691 to your computer and use it in GitHub Desktop.
Toggle CSS format between single and multiline
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
import sublime, sublime_plugin, re | |
DEBUG_ENABLED = False | |
PRINT_CONTEXT = False | |
# Toggle between single-line or multi-line formatted css statement | |
# | |
# Save as: ~/Library/Application Support/Sublime Text 2/Packages/User/CSSToggle.py | |
# | |
# Add the following line to Preferences > Key Bindings - User | |
# { "keys": ["command+shift+j"], "command": "toggle_single_line_css" } | |
# | |
# Credit: http://www.sublimetext.com/forum/viewtopic.php?f=6&t=2237 | |
class ToggleSingleLineCssCommand(sublime_plugin.TextCommand): | |
def run(self,edit): | |
debug('Invoked "toggle_single_line_css" with %d region(s)' % (len(self.view.sel()))) | |
for region in reversed(self.view.sel()): | |
text = self.view.substr(region) | |
# check if the css statement needs to be expanded or collapsed | |
if re.match('^.*\{.*}\s*$', text): | |
# expand the css statement | |
debug('The css statement needs to be expanded', text) | |
m = re.search('^(?P<key>.*)\{(?P<params>.*)\;\s*}$', text) | |
multiline = '%s{\n\t%s;\n}' % (m.group('key'), m.group('params').strip().replace('; ', ';\n\t')) | |
self.view.replace(edit, region, multiline) | |
else: | |
debug('The css statement needs to be collapsed', text) | |
# collapse the css statement | |
singleline = ' '.join([x.strip() for x in text.split('\n')]) | |
self.view.replace(edit, region, singleline) | |
def debug(text, context=""): | |
if DEBUG_ENABLED: | |
print '[toggle_single_line_css]: ' + text | |
if PRINT_CONTEXT and context != "": | |
print '>>> ' + context |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment