diff --git a/.gitignore b/.gitignore index e1dce7f74..8e6d3e86a 100644 --- a/.gitignore +++ b/.gitignore @@ -20,7 +20,6 @@ build/ src/macosx/M6502.ins *.dSYM .vscode/c_cpp_properties.json -.vscode/settings.json src/windows/sdl/* src/windows/x64/* src/windows/Win32/* diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..40ad65881 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,98 @@ +// Platzieren Sie Ihre Einstellungen in dieser Datei, um Standard- und Benutzereinstellungen zu überschreiben. +{ + "editor.tabSize": 2, + "files.trimTrailingWhitespace": true, + "files.exclude": { + "**/.git": true, + "**/.svn": true, + "**/.hg": true, + "**/.DS_Store": true, + "src/**/*.o": true + }, + "editor.trimAutoWhitespace": true, + "editor.useTabStops": false, + "C_Cpp.intelliSenseEngine": "Default", + "files.insertFinalNewline": true, + "files.associations": { + "__functional_base": "cpp", + "array": "cpp", + "istream": "cpp", + "locale": "cpp", + "memory": "cpp", + "thread": "cpp", + "tuple": "cpp", + "utility": "cpp", + "*.tcc": "cpp", + "functional": "cpp", + "iomanip": "cpp", + "__cxx_version": "cpp", + "string": "cpp", + "type_traits": "cpp", + "ostream": "cpp", + "__bit_reference": "cpp", + "__config": "cpp", + "__debug": "cpp", + "__errc": "cpp", + "__hash_table": "cpp", + "__locale": "cpp", + "__mutex_base": "cpp", + "__node_handle": "cpp", + "__nullptr": "cpp", + "__split_buffer": "cpp", + "__string": "cpp", + "__threading_support": "cpp", + "__tree": "cpp", + "__tuple": "cpp", + "algorithm": "cpp", + "atomic": "cpp", + "bit": "cpp", + "bitset": "cpp", + "cctype": "cpp", + "chrono": "cpp", + "clocale": "cpp", + "cmath": "cpp", + "codecvt": "cpp", + "complex": "cpp", + "condition_variable": "cpp", + "cstdarg": "cpp", + "cstddef": "cpp", + "cstdint": "cpp", + "cstdio": "cpp", + "cstdlib": "cpp", + "cstring": "cpp", + "ctime": "cpp", + "cwchar": "cpp", + "cwctype": "cpp", + "deque": "cpp", + "exception": "cpp", + "fstream": "cpp", + "initializer_list": "cpp", + "ios": "cpp", + "iosfwd": "cpp", + "iostream": "cpp", + "iterator": "cpp", + "limits": "cpp", + "list": "cpp", + "map": "cpp", + "mutex": "cpp", + "new": "cpp", + "numeric": "cpp", + "optional": "cpp", + "queue": "cpp", + "random": "cpp", + "ratio": "cpp", + "set": "cpp", + "sstream": "cpp", + "stack": "cpp", + "stdexcept": "cpp", + "streambuf": "cpp", + "string_view": "cpp", + "system_error": "cpp", + "typeinfo": "cpp", + "unordered_map": "cpp", + "vector": "cpp", + "memory_resource": "cpp", + "cfenv": "cpp", + "cinttypes": "cpp" + } +}