Advertisement
zipdang04

setting

Mar 29th, 2021 (edited)
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.48 KB | None | 0 0
  1. {
  2.     "files.autoSave": "afterDelay",
  3.     "code-runner.executorMap": {
  4.         "javascript": "node",
  5.         "java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
  6.         "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
  7.         "cpp": "cd $dir && g++ $fileName --std=c++11 -O2 -Wall -Wextra -DHIEU -static -o $fileNameWithoutExt",
  8.         "objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
  9.         "php": "php",
  10.         "python": "python -u",
  11.         "perl": "perl",
  12.         "perl6": "perl6",
  13.         "ruby": "ruby",
  14.         "go": "go run",
  15.         "lua": "lua",
  16.         "groovy": "groovy",
  17.         "powershell": "powershell -ExecutionPolicy ByPass -File",
  18.         "bat": "cmd /c",
  19.         "shellscript": "bash",
  20.         "fsharp": "fsi",
  21.         "csharp": "scriptcs",
  22.         "vbscript": "cscript //Nologo",
  23.         "typescript": "ts-node",
  24.         "coffeescript": "coffee",
  25.         "scala": "scala",
  26.         "swift": "swift",
  27.         "julia": "julia",
  28.         "crystal": "crystal",
  29.         "ocaml": "ocaml",
  30.         "r": "Rscript",
  31.         "applescript": "osascript",
  32.         "clojure": "lein exec",
  33.         "haxe": "haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt",
  34.         "rust": "cd $dir && rustc $fileName && $dir$fileNameWithoutExt",
  35.         "racket": "racket",
  36.         "scheme": "csi -script",
  37.         "ahk": "autohotkey",
  38.         "autoit": "autoit3",
  39.         "dart": "dart",
  40.         "pascal": "cd $dir && fpc $fileName && $dir$fileNameWithoutExt",
  41.         "d": "cd $dir && dmd $fileName && $dir$fileNameWithoutExt",
  42.         "haskell": "runhaskell",
  43.         "nim": "nim compile --verbosity:0 --hints:off --run",
  44.         "lisp": "sbcl --script",
  45.         "kit": "kitc --run",
  46.         "v": "v run",
  47.         "sass": "sass --style expanded",
  48.         "scss": "scss --style expanded",
  49.         "less": "cd $dir && lessc $fileName $fileNameWithoutExt.css",
  50.         "FortranFreeForm": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
  51.         "fortran-modern": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
  52.         "fortran_fixed-form": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
  53.         "fortran": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"
  54.     },
  55.     "terminal.integrated.defaultProfile.windows": "Command Prompt"
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement