bblanchon / SublimeText-HighlightBuildErrors

👻 A plugin for Sublime Text 3 that highlights the lines that caused errors in the build
https://sublime.wbond.net/packages/Highlight%20Build%20Errors
MIT License
12 stars 7 forks source link

This package stop working if installed with BuildNext #27

Open evandrocoan opened 6 years ago

evandrocoan commented 6 years ago
  1. https://github.com/albertosantini/sublimetext-buildnext

Reducing that package into these lines only are also enough to break it:

"""This package augments the default build system."""

import sublime
import sublime_plugin
import re

import importlib
defaultExec = importlib.import_module("Default.exec")

class ExecCommand(defaultExec.ExecCommand):
    """This class extends the default build system."""

    def on_finished(self, proc):
        """It is the entry point after the process is finished."""
        super(ExecCommand, self).on_finished(proc)