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 93 94
| { "code-runner.executorMap": { "javascript": "node", "java": "cd $dir && javac $fileName && java $fileNameWithoutExt", "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", "zig": "zig run", "cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt -std=c++20 -O2 '-Wl,--stack=512000000' -Wall -Wextra -Wconversion && $dir$fileNameWithoutExt", "objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", "php": "php", "python": "python -u", "perl": "perl", "perl6": "perl6", "ruby": "ruby", "go": "go run", "lua": "lua", "groovy": "groovy", "powershell": "powershell -ExecutionPolicy ByPass -File", "bat": "cmd /c", "shellscript": "bash", "fsharp": "fsi", "csharp": "scriptcs", "vbscript": "cscript //Nologo", "typescript": "ts-node", "coffeescript": "coffee", "scala": "scala", "swift": "swift", "julia": "julia", "crystal": "crystal", "ocaml": "ocaml", "r": "Rscript", "applescript": "osascript", "clojure": "lein exec", "haxe": "haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt", "rust": "cd $dir && rustc $fileName && $dir$fileNameWithoutExt", "racket": "racket", "scheme": "csi -script", "ahk": "autohotkey", "autoit": "autoit3", "dart": "dart", "pascal": "cd $dir && fpc $fileName && $dir$fileNameWithoutExt", "d": "cd $dir && dmd $fileName && $dir$fileNameWithoutExt", "haskell": "runghc", "nim": "nim compile --verbosity:0 --hints:off --run", "lisp": "sbcl --script", "kit": "kitc --run", "v": "v run", "sass": "sass --style expanded", "scss": "scss --style expanded", "less": "cd $dir && lessc $fileName $fileNameWithoutExt.css", "FortranFreeForm": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", "fortran-modern": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", "fortran_fixed-form": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", "fortran": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", "sml": "cd $dir && sml $fileName", "mojo": "mojo run", "erlang": "escript", "spwn": "spwn build", "pkl": "cd $dir && pkl eval -f yaml $fileName -o $fileNameWithoutExt.yaml", "gleam": "gleam run -m $fileNameWithoutExt" }, "terminal.integrated.enableMultiLinePasteWarning": "never", "files.autoSave": "afterDelay", "files.autoSaveDelay": 2000, "code-runner.runInTerminal": true, "github.copilot.enable": { "*": false, "plaintext": false, "markdown": false, "scminput": false, "cpp": false }, "glassit.alpha": 220, "github.copilot.nextEditSuggestions.enabled": false, "luogu.alwaysUseDefaultLanguageVersion": true, "workbench.editor.empty.hint": "hidden", "cph.general.defaultLanguage": "cpp", "competitive-companion.port": 10045, "competitive-companion.debug": true, "cph.general.defaultLanguageTemplateFileLocation": "D:\\c++\\luogu\\1.cpp", "cph.general.problemsDirectory": "D:\\c++\\problems", "cph.general.problemsStoragePath": "D:\\c++\\Code", "cph.general.firstTime": false, "editor.fontSize": 25, "terminal.integrated.fontFamily": "'Fira Code', 'Noto Sans CJK SC'", "editor.fontFamily": "'Fira Code', 'Noto Sans CJK SC'", "editor.fontLigatures": "'cv01', 'cv02', 'cv11'", "editor.defaultFormatter": "ms-vscode.cpptools", "C_Cpp.formatting": "vcFormat", "git.openRepositoryInParentFolders": "never", "vsicons.dontShowNewVersionMessage": true, "workbench.iconTheme": "vscode-icons", "explorer.confirmDragAndDrop": false, }
|