美文网首页
Code Runner配置

Code Runner配置

作者: Shaw007 | 来源:发表于2020-04-12 17:23 被阅读0次

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

相关文章

网友评论

      本文标题:Code Runner配置

      本文链接:https://www.haomeiwen.com/subject/cxdbmhtx.html