-
Notifications
You must be signed in to change notification settings - Fork 589
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
1 parent
ade0bec
commit 5d52e08
Showing
21 changed files
with
4,933 additions
and
356 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
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,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>scope</key> | ||
<string>source.d</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>cancelCompletion</key> | ||
<string>^\s*(\}?\s*(else|try|do|finally|synchonized|struct|union|unittest|debug)|(class|struct|interface|union)\s*[a-zA-Z_0-9]+*)$</string> | ||
</dict> | ||
</dict> | ||
</plist> |
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,8 @@ | ||
{ | ||
"shell_cmd": "dub build", | ||
"file_regex": "^(.*?)\\(([0-9]+)(,[0-9]+)?\\)", | ||
"working_dir": "${folder:${project_path:${file_path}}}", | ||
"selector": "source.d", | ||
"syntax": "Packages/D/DMD Output.sublime-syntax", | ||
"keyfiles": ["dub.sdl", "dub.json"], | ||
} |
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 |
---|---|---|
@@ -1,5 +1,14 @@ | ||
{ | ||
"cmd": ["dmd", "$file"], | ||
"file_regex": "^(.*?)\\(([0-9]+)\\)", | ||
"selector": "source.d" | ||
"shell_cmd": "dmd \"$file\"", | ||
"file_regex": "^(.*?)\\(([0-9]+)(,[0-9]+)?\\)", | ||
"selector": "source.d", | ||
"syntax": "Packages/D/DMD Output.sublime-syntax", | ||
|
||
"variants": | ||
[ | ||
{ | ||
"name": "Run", | ||
"shell_cmd": "rdmd \"$file\"", | ||
} | ||
] | ||
} |
Oops, something went wrong.