forked from ThomasWeiser/Elm.tmLanguage
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow build output to be received as strings or bytes
Sublime Text 3 r3153 changed the ExecCommand base class to return data as decoded strings, rather than bytes that need to be decoded. In order to support both old and new versions of Sublime Text 3, we must support both of these APIs. Longer-term, it's probably a good idea to move away from an ExecCommand subclass.
- Loading branch information
Showing
2 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
New in Elm Language Support 0.22.2 (Mar 24, 2018) | ||
|
||
- Fix: Restore build system compatibility with Sublime Text 3 releases prior to r3153. |