Skip to content

Commit

Permalink
Bump up version
Browse files Browse the repository at this point in the history
  • Loading branch information
swr1bm86 committed May 29, 2017
1 parent bf526a5 commit 2f7786f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.9.8

* Add option to toggle showing output channel of displaying typechecking result [#109](https://github.com/zjhmale/vscode-idris/issues/109)
* Ignore huge image files when publishing to marketplace [#110](https://github.com/zjhmale/vscode-idris/issues/110)
* Add option to control the max times of continuous typechecking in order to avoid memory leaking without reducing user experience [#111](https://github.com/zjhmale/vscode-idris/issues/111)
* Mock a maybe monad to simplify nullary checking [#112](https://github.com/zjhmale/vscode-idris/issues/112)

## 0.9.6

* Latex completion for `replCompletion` mode [#104](https://github.com/zjhmale/vscode-idris/issues/104)
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,12 @@ The following Visual Studio Code settings along with their *default* values that

```javascript
{
"idris.executablePath": "idris", // The full path to the idris executable.
"idris.hoverMode": "fallback", // Controls the hover behavior. 'info' will display Idris documentation, 'type' will display Idris type, 'fallback' will try 'info' first and fallback to 'type' if we can not get the documentation, and 'none' will disable hover tooltips.
"idris.suggestMode": "allWords" // Controls the auto-completion behavior. 'allWords' will always include all words from the currently opened documentation, 'replCompletion' will get suggestions from Idris REPL process.
"idris.warnPartial": false // Show warning when a function is partial.
"idris.showOutputWhenTypechecking": false //Show output channel when typechecking finished."
"idris.executablePath": "idris", // The full path to the idris executable.
"idris.hoverMode": "fallback", // Controls the hover behavior. 'info' will display Idris documentation, 'type' will display Idris type, 'fallback' will try 'info' first and fallback to 'type' if we can not get the documentation, and 'none' will disable hover tooltips.
"idris.suggestMode": "allWords" // Controls the auto-completion behavior. 'allWords' will always include all words from the currently opened documentation, 'replCompletion' will get suggestions from Idris REPL process.
"idris.warnPartial": false // Show warning when a function is partial.
"idris.showOutputWhenTypechecking": false //Show output channel when typechecking finished.
"idris.numbersOfContinuousTypechecking": 10 //Kill Idris process every N times of continuous typechecking to avoid memory leaking.
}
```

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Idris",
"description": "Idris Language Support for Visual Studio Code",
"version": "0.9.6",
"version": "0.9.8",
"publisher": "zjhmale",
"engines": {
"vscode": "^1.8.0"
Expand Down Expand Up @@ -129,7 +129,7 @@
"idris.numbersOfContinuousTypechecking": {
"type": "number",
"default": 10,
"description": "Kill Idris process every N times of typechecking to avoid memory leaking."
"description": "Kill Idris process every N times of continuous typechecking to avoid memory leaking."
}
}
},
Expand Down

0 comments on commit 2f7786f

Please sign in to comment.