Skip to content

Commit 0c9fdd4

Browse files
committed
0.9.7
1 parent df39edb commit 0c9fdd4

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 0.9.7 (2019-01-29)
2+
* Add config entry to set the executor per filename glob
3+
* Support Maven project (pom.xml)
4+
* Add [CODING](https://e.coding.net/?utm_source=hendry-code-runner&utm_medium=cpc&utm_campaign=hendry-code-runner) as our second sponsor
5+
16
### 0.9.6 (2019-01-16)
27
* Add support for Lisp
38

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ If you like this extension, you could become a backer or sponsor via **[Patreon]
2626
* Run code file through context menu of file explorer
2727
* Run selected code snippet in Text Editor
2828
* Run code per Shebang
29+
* Run code per filename glob
2930
* Run custom command
3031
* Stop code running
3132
* View output in Output Window
@@ -88,6 +89,17 @@ e.g. To set the executor PATH for ruby, php and html:
8889
* Back slash: please use `\\`
8990
* If there ares spaces in file path, please use `\"` to surround your file path
9091

92+
You could set the executor per filename [glob](https://en.wikipedia.org/wiki/Glob_(programming)):
93+
```json
94+
{
95+
"code-runner.executorMapByGlob": {
96+
"pom.xml": "cd $dir && mvn clean package",
97+
"*.test.js": "tap",
98+
"*.js": "node"
99+
}
100+
}
101+
```
102+
91103
Besides, you could set the default language to run:
92104
```json
93105
{

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "code-runner",
33
"displayName": "Code Runner",
44
"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",
5-
"version": "0.9.6",
5+
"version": "0.9.7",
66
"publisher": "formulahendry",
77
"icon": "images/logo.png",
88
"engines": {

0 commit comments

Comments
 (0)