Skip to content

Commit

Permalink
Merge 89ade4f into 11148a3
Browse files Browse the repository at this point in the history
  • Loading branch information
deerawan committed Apr 25, 2018
2 parents 11148a3 + 89ade4f commit 5afd305
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 17 deletions.
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
package.json
package-lock.json
out
3 changes: 2 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ test/**
src/**
**/*.map
.gitignore
.prettierrc
.prettierignore
tsconfig.json
vsc-extension-quickstart.md
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.10.0
- Add Ansible support

## 1.9.0
- Add Terraform support

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ first in order to allow VS Code to detect the language.

Language | Dash Docset Keys | Docset Setting | Language Plugin |
------------ | ------------- | ------------- | :-------------: |
Ansible | ansible | dash.docset.ansible, dash.docset.ansible-advanced | [link](https://marketplace.visualstudio.com/items?itemName=haaaad.ansible)
C++ | cpp,net,boost,qt,cvcpp,cocos2dx,c,manpages | dash.docset.cpp | [link](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
C# | net,mono,unity3d | dash.docset.csharp
Clojure | clojure | dash.docset.clojure
Expand Down
30 changes: 15 additions & 15 deletions package-lock.json

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

20 changes: 19 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-dash",
"displayName": "Dash",
"description": "Dash and Zeal integration in Visual Studio Code",
"version": "1.9.0",
"version": "1.10.0",
"publisher": "deerawan",
"icon": "images/dash.png",
"galleryBanner": {
Expand Down Expand Up @@ -80,6 +80,24 @@
"type": "object",
"title": "Dash Configuration",
"properties": {
"dash.docset.ansible": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"ansible"
]
},
"dash.docset.ansible-advanced": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"ansible"
]
},
"dash.docset.css": {
"type": "array",
"items": {
Expand Down

0 comments on commit 5afd305

Please sign in to comment.