coderunner - VS Code Code runner Run Profiles? -


so ended using great code runner extension of vscode developing c programming in vscode tried using tasks couldn't desired results. code runner awesome can compile , run c code 1 command. want know if there anyway set different run profiles current file open in editor because shown here there 1 one relationship between language , it's executor. there anyway set different commands special language?

 "code-runner.executormap": { "javascript": "node", "java": "cd $dir && javac $filename && java $filenamewithoutext", "c": "cd $dir && gcc $filename -o $filenamewithoutext && $dir$filenamewithoutext", "cpp": "cd $dir && g++ $filename -o $filenamewithoutext && $dir$filenamewithoutext", "objective-c": "cd $dir && gcc -framework cocoa $filename -o $filenamewithoutext && $dir$filenamewithoutext", "php": "php", "python": "python", "perl": "perl", "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", "ahk": "autohotkey", "autoit": "autoit3", "kotlin": "cd $dir && kotlinc $filename -include-runtime -d $filenamewithoutext.jar && java -jar $filenamewithoutext.jar", "dart": "dart", "pascal": "cd $dir && fpc $filename && $dir$filenamewithoutext", "d": "cd $dir && dmd $filename && $dir$filenamewithoutext", "haskell": "runhaskell", "nim": "nim compile --verbosity:0 --hints:off --run" } 


Comments

Popular posts from this blog

python Tkinter Capturing keyboard events save as one single string -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

javascript - Z-index in d3.js -