Code Runner配置

"code-runner.executorMap":{
"javascript": "node",
"java": "cd fileName ; java dir gcc fileNameWithoutExt && fileNameWithoutExt",
"cpp": "cd fileName -std=c++11 -o dirdir ; gcc -framework Cocoa fileNameWithoutExt ; 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 fileNameWithoutExt",
"rust": "cd fileName ; fileNameWithoutExt",
"racket": "racket",
"ahk": "autohotkey",
"autoit": "autoit3",
"dart": "dart",
"pascal": "cd fileName ; fileNameWithoutExt",
"d": "cd fileName ; fileNameWithoutExt",
"haskell": "runhaskell",
"nim": "nim compile --verbosity:0 --hints:off --run",
"lisp": "sbcl --script",
"kit": "kitc --run"
},

你可能感兴趣的:(Code Runner配置)