-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
soft sync with cit's tg ""hardsync""
- Loading branch information
1 parent
4687053
commit 5ebcd9c
Showing
7 changed files
with
64 additions
and
54 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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
{ | ||
"recommendations": [ | ||
"gbasood.byond-dm-language-support", | ||
"platymuus.dm-langclient", | ||
"EditorConfig.EditorConfig" | ||
] | ||
"recommendations": [ | ||
"gbasood.byond-dm-language-support", | ||
"platymuus.dm-langclient", | ||
"EditorConfig.EditorConfig", | ||
"arcanis.vscode-zipfs", | ||
"dbaeumer.vscode-eslint", | ||
"kevinkyang.auto-comment-blocks" | ||
] | ||
} |
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 |
---|---|---|
@@ -1 +1,38 @@ | ||
#define EXTOOLS (world.system_type == MS_WINDOWS ? "byond-extools.dll" : "libbyond-extools.so") | ||
// _extools_api.dm - DM API for extools extension library | ||
// (blatently stolen from rust_g) | ||
// | ||
// To configure, create a `extools.config.dm` and set what you care about from | ||
// the following options: | ||
// | ||
// #define EXTOOLS "path/to/extools" | ||
// Override the .dll/.so detection logic with a fixed path or with detection | ||
// logic of your own. | ||
|
||
#ifndef EXTOOLS | ||
// Default automatic EXTOOLS detection. | ||
// On Windows, looks in the standard places for `byond-extools.dll`. | ||
// On Linux, looks in the standard places for`libbyond-extools.so`. | ||
|
||
/* This comment bypasses grep checks */ /var/__extools | ||
|
||
/proc/__detect_extools() | ||
if (world.system_type == UNIX) | ||
if (fexists("./libbyond-extools.so")) | ||
// No need for LD_LIBRARY_PATH badness. | ||
return __extools = "./libbyond-extools.so" | ||
else | ||
// It's not in the current directory, so try others | ||
return __extools = "libbyond-extools.so" | ||
else | ||
return __extools = "byond-extools.dll" | ||
|
||
#define EXTOOLS (__extools || __detect_extools()) | ||
#endif | ||
|
||
#ifndef UNIT_TESTS // use default logging as extools is broken on travis | ||
#define EXTOOLS_LOGGING // rust_g is used as a fallback if this is undefined | ||
#endif | ||
|
||
/proc/extools_log_write() | ||
|
||
/proc/extools_finalize_logging() |
This file was deleted.
Oops, something went wrong.
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