1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
| { "code-runner.runInTerminal": true, "code-runner.saveAllFilesBeforeRun": true, "code-runner.saveFileBeforeRun": true, "code-runner.preserveFocus": false, "cmake.configureOnOpen": true, "explorer.confirmDelete": false, "editor.fontSize": 18, "editor.fontFamily": "Fira Code", "explorer.confirmDragAndDrop": false, "files.autoSave": "onFocusChange", "editor.fontLigatures": true, "editor.fontWeight": "normal", "workbench.iconTheme": "material-icon-theme", "terminal.integrated.enableMultiLinePasteWarning": false, "code-runner.executorMap": { "cpp": "cd $dir && clang++ -std=c++17 $fileName -o $test.out && $dir$test.out", "python": "cd $dir && python3 $fileName" }, "files.associations": { "__bit_reference": "cpp", "__config": "cpp", "__debug": "cpp", "__errc": "cpp", "__hash_table": "cpp", "__locale": "cpp", "__mutex_base": "cpp", "__node_handle": "cpp", "__split_buffer": "cpp", "__threading_support": "cpp", "__tree": "cpp", "__verbose_abort": "cpp", "array": "cpp", "atomic": "cpp", "bitset": "cpp", "cctype": "cpp", "charconv": "cpp", "clocale": "cpp", "cmath": "cpp", "complex": "cpp", "cstdarg": "cpp", "cstddef": "cpp", "cstdint": "cpp", "cstdio": "cpp", "cstdlib": "cpp", "cstring": "cpp", "ctime": "cpp", "cwchar": "cpp", "cwctype": "cpp", "deque": "cpp", "exception": "cpp", "initializer_list": "cpp", "iomanip": "cpp", "ios": "cpp", "iosfwd": "cpp", "iostream": "cpp", "istream": "cpp", "limits": "cpp", "locale": "cpp", "map": "cpp", "mutex": "cpp", "new": "cpp", "optional": "cpp", "ostream": "cpp", "queue": "cpp", "ratio": "cpp", "set": "cpp", "sstream": "cpp", "stack": "cpp", "stdexcept": "cpp", "streambuf": "cpp", "string": "cpp", "string_view": "cpp", "system_error": "cpp", "tuple": "cpp", "typeinfo": "cpp", "unordered_map": "cpp", "variant": "cpp", "vector": "cpp", "__bits": "cpp", "__nullptr": "cpp", "__string": "cpp", "__tuple": "cpp", "bit": "cpp", "chrono": "cpp", "compare": "cpp", "concepts": "cpp", "memory": "cpp", "type_traits": "cpp", "algorithm": "cpp" } }
|