Skip to content

Commit

Permalink
Update to vscode-languageclient 3.2.1
Browse files Browse the repository at this point in the history
This fixes microsoft/vscode-languageserver-node#199
but needs vscode 1.12 or above
  • Loading branch information
alanz committed May 5, 2017
1 parent fd004d7 commit 69bb76c
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,22 @@
],
"default": "off",
"description": "Traces the communication between VSCode and the languageServerExample service."
}
},
"commands": [{
"command": "hare:demote",
"title": "HaRe demote definition"
}],
"menus": {
"editor/title": [{
"when": "resourceLangId == haskell",
"command": "hare:demote"
}],
"editor/context": [{
"when": "resourceLangId == haskell",
"command": "hare:demote",
"group": "HaRe@1"
}]
}
},

"scripts": {
Expand All @@ -78,7 +93,7 @@
"vscode": "^1.1.0"
},
"dependencies": {
"vscode-languageclient": "^3.2.0"
"vscode-languageclient": "^3.2.1"
}

}

0 comments on commit 69bb76c

Please sign in to comment.