-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
1,078 additions
and
418 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
// These are configurations used for haxe completion. | ||
// | ||
// Each configuration is an array of arguments that will be passed to the Haxe completion server, | ||
// they should only contain arguments and/or hxml files that are needed for completion, | ||
// such as -cp, -lib, target output settings and defines. | ||
"haxe.displayConfigurations": [ | ||
["dev.hxml"] | ||
] | ||
} |
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,18 @@ | ||
{ | ||
"version": "0.1.0", | ||
"command": "haxe", | ||
"args": ["dev.hxml", "--times"], | ||
"problemMatcher": { | ||
"owner": "haxe", | ||
"pattern": { | ||
"regexp": "^(.+):(\\d+): (?:lines \\d+-(\\d+)|character(?:s (\\d+)-| )(\\d+)) : (?:(Warning) : )?(.*)$", | ||
"file": 1, | ||
"line": 2, | ||
"endLine": 3, | ||
"column": 4, | ||
"endColumn": 5, | ||
"severity": 6, | ||
"message": 7 | ||
} | ||
} | ||
} |
Oops, something went wrong.