Skip to content

Commit

Permalink
0.9.9
Browse files Browse the repository at this point in the history
  • Loading branch information
formulahendry committed May 4, 2019
1 parent 5ce17af commit bdb8155
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 0.9.9 (2019-05-04)
* Fix tempCodeRunnerFile not being deleted
* Add option to hide "Run Code" from explorer context menu

### 0.9.8 (2019-04-07)
* Add support for [Kit](https://www.kitlang.org/)

Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ Run code snippet or code file for multiple languages: **C, C++, Java, JavaScript

Discuss, review, and share code with your team in VS Code. Links discussions about code to your code. Integrates w/ Slack, Jira, Trello, and Live Share. [Try it free](https://codestream.com/?utm_source=vscmarket&utm_medium=banner&utm_campaign=coderunner).

[![Coding](images/Coding.jpg)](https://e.coding.net/?utm_source=hendry-code-runner&utm_medium=cpc&utm_campaign=hendry-code-runner)
[![Coding](images/Coding.jpg)](https://coding.net/?utm_source=hendry-code-runner&utm_medium=cpc&utm_campaign=hendry-code-runner)

[CODING](https://e.coding.net/?utm_source=hendry-code-runner&utm_medium=cpc&utm_campaign=hendry-code-runner) 提供 DevOps 全流程应用,从需求到实现,一站式开发体验。 CODING is a one-stop platform for entire software development lifecycle, from requirement to development.
[CODING](https://coding.net/?utm_source=hendry-code-runner&utm_medium=cpc&utm_campaign=hendry-code-runner) 提供 DevOps 全流程应用,从需求到实现,一站式开发体验。 CODING is a one-stop platform for entire software development lifecycle, from requirement to development.

## Donation

Expand Down Expand Up @@ -179,6 +179,8 @@ To set whether to preserve focus on code editor after code run is triggered (def

`code-runner.showRunCommandInEditorContextMenu`: Whether to show 'Run Code' command in editor context menu. (Default is **true**)

`code-runner.showRunCommandInExplorerContextMenu`: Whether to show 'Run Code' command in explorer context menu. (Default is **true**)

`code-runner.terminalRoot`: For Windows system, replaces the Windows style drive letter in the command with a Unix style root when using a custom shell as the terminal, like Bash or Cgywin. Example: Setting this to `/mnt/` will replace `C:\path` with `/mnt/c/path` (Default is **""**)

`code-runner.temporaryFileName`: Temporary file name used in running selected code snippet. When it is set as empty, the file name will be random. (Default is **"tempCodeRunnerFile"**)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,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, AutoHotkey, AutoIt, Kotlin, Dart, Pascal, Haskell, Nim, D, Lisp, Kit",
"version": "0.9.8",
"version": "0.9.9",
"publisher": "formulahendry",
"icon": "images/logo.png",
"engines": {
Expand Down Expand Up @@ -98,7 +98,7 @@
],
"explorer/context": [
{
"when": "!explorerResourceIsFolder && config.code-runner.showRunCommandInExplorerMenu",
"when": "!explorerResourceIsFolder && config.code-runner.showRunCommandInExplorerContextMenu",
"command": "code-runner.run",
"group": "navigation"
}
Expand Down Expand Up @@ -294,11 +294,11 @@
"description": "Whether to show 'Run Code' command in editor context menu.",
"scope": "resource"
},
"code-runner.showRunCommandInExplorerMenu": {
"type": "boolean",
"default": true,
"description": "Whether to show 'Run Code' command in explorer context menu.",
"scope": "resource"
"code-runner.showRunCommandInExplorerContextMenu": {
"type": "boolean",
"default": true,
"description": "Whether to show 'Run Code' command in explorer context menu.",
"scope": "resource"
},
"code-runner.temporaryFileName": {
"type": "string",
Expand Down

0 comments on commit bdb8155

Please sign in to comment.