Skip to content

Commit

Permalink
Merge branch 'master' into sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
back2dos authored Feb 13, 2017
2 parents 5548af8 + e611650 commit 8f424c4
Show file tree
Hide file tree
Showing 17 changed files with 1,078 additions and 418 deletions.
10 changes: 10 additions & 0 deletions .vscode/settings.json
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"]
]
}
18 changes: 18 additions & 0 deletions .vscode/tasks.json
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
}
}
}
Loading

0 comments on commit 8f424c4

Please sign in to comment.