-
Notifications
You must be signed in to change notification settings - Fork 299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Pickle support #1111
Add Pickle support #1111
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "code-runner", | ||
"displayName": "Code Runner", | ||
"description": "Run C, C++, Java, JS, PHP, Python, Perl, Ruby, Go, Lua, Groovy, PowerShell, CMD, BASH, F#, C#, VBScript, TypeScript, CoffeeScript, Scala, Swift, Julia, Crystal, OCaml, R, AppleScript, Elixir, VB.NET, Clojure, Haxe, Obj-C, Rust, Racket, Scheme, AutoHotkey, AutoIt, Kotlin, Dart, Pascal, Haskell, Nim, D, Lisp, Kit, V, SCSS, Sass, CUDA, Less, Fortran, Ring, Standard ML, Zig, Mojo, Erlang", | ||
"description": "Run C, C++, Java, JS, PHP, Python, Perl, Ruby, Go, Lua, Groovy, PowerShell, CMD, BASH, F#, C#, VBScript, TypeScript, CoffeeScript, Scala, Swift, Julia, Crystal, OCaml, R, AppleScript, Elixir, VB.NET, Clojure, Haxe, Obj-C, Rust, Racket, Scheme, AutoHotkey, AutoIt, Kotlin, Dart, Pascal, Haskell, Nim, D, Lisp, Kit, V, SCSS, Sass, CUDA, Less, Fortran, Ring, Standard ML, Zig, Mojo, Erlang, Pickle", | ||
"version": "0.12.1", | ||
"featureFlags": { | ||
"usingNewPythonInterpreterPathApi": true, | ||
|
@@ -22,7 +22,7 @@ | |
"python", | ||
"perl", | ||
"ruby", | ||
"multi-root ready" | ||
"multi-root ready", | ||
], | ||
"bugs": { | ||
"url": "https://github.com/formulahendry/vscode-code-runner/issues", | ||
|
@@ -185,7 +185,8 @@ | |
"fortran": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", | ||
"sml": "cd $dir && sml $fileName", | ||
"mojo": "mojo run", | ||
"erlang": "escript" | ||
"erlang": "escript", | ||
"pickle": "pkl eval -f yaml $fileName -o $fileNameWithoutExt.yaml" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It should be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Applied changes |
||
}, | ||
"description": "Set the executor of each language.", | ||
"scope": "resource" | ||
|
@@ -225,7 +226,8 @@ | |
".ring": "ring", | ||
".sml": "cd $dir && sml $fileName", | ||
".mojo": "mojo run", | ||
".erl": "escript" | ||
".erl": "escript", | ||
".pkl": "pkl eval -f yaml $fileName -o $fileNameWithoutExt.yaml" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here. Add There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Applied changes |
||
}, | ||
"description": "Set the executor of each file extension.", | ||
"scope": "resource" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No extra
,
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Applied changes