You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error: plugin_host has exited unexpectedly, plugin functionality won't be available until Sublime Text has been restarted
find the file: style_parser.py, modify the contents of class class CssExtendedCompletionsFileCommand as:
class CssExtendedCompletionsFileCommand(sublime_plugin.TextCommand):
def run(self, edit, content):
# add space between any )} chars
# ST3 throws an error in some LESS files that do this
content = re.sub(r'\)\}', r') }', content)
content = re.sub(r'\}', '}\n', content)
content = re.sub(r'\*/', '*/\n', content)
panel = get_output_panel()
# panel.erase(edit, sublime.Region(0, panel.size()))
panel.run_command("select_all")
panel.run_command("right_delete")
panel.insert(edit, 0, content)
# call size to force ST to acknowledge new content
# sometimes it seems to fail on knowing new content is there
panel.size()
The text was updated successfully, but these errors were encountered:
error info:
find the file:
style_parser.py
, modify the contents of class classCssExtendedCompletionsFileCommand
as:The text was updated successfully, but these errors were encountered: