-
Notifications
You must be signed in to change notification settings - Fork 6
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
4 changed files
with
60 additions
and
22 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,6 +1,6 @@ | ||
{ | ||
"recommendations": [ | ||
"ms-vscode.cpptools", | ||
"xaver.clang-format" | ||
] | ||
} | ||
"recommendations": [ | ||
"ms-vscode.cpptools", | ||
"ms-vscode.makefile-tools" | ||
] | ||
} |
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,16 +1,20 @@ | ||
{ | ||
"[c]": { | ||
"files.encoding": "shiftjis", | ||
"editor.defaultFormatter": "xaver.clang-format" | ||
}, | ||
"[cpp]": { | ||
"files.encoding": "shiftjis", | ||
"editor.defaultFormatter": "xaver.clang-format" | ||
}, | ||
|
||
"editor.tabSize": 4, | ||
"files.associations": { | ||
"source_location": "cpp", | ||
"types.h": "c" | ||
} | ||
"[c]": { | ||
"files.encoding": "shiftjis", | ||
"editor.defaultFormatter": "ms-vscode.cpptools" | ||
}, | ||
"[cpp]": { | ||
"files.encoding": "shiftjis", | ||
"editor.defaultFormatter": "ms-vscode.cpptools" | ||
}, | ||
"editor.tabSize": 4, | ||
"files.exclude": { | ||
"**/*.ctx": true | ||
}, | ||
"files.associations": { | ||
"*.c.ctx": "c", | ||
"*.ctx": "cpp", | ||
"source_location": "cpp", | ||
"*.cp": "cpp", | ||
} | ||
} |
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,6 @@ | ||
// disables the "too many characters in character constant" intellisense error, because we have u64 constants all over the place | ||
#pragma diag_suppress 26 | ||
// disables the "invalid multibyte character sequence" error since we have to escape shift-jis misreads a lot | ||
#pragma diag_suppress 870 | ||
// disables the "invalid arguments for operator new" error | ||
#pragma diag_suppress 1767 |