volar-service-markdown 0.0.43 → 0.0.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +5 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -232,6 +232,11 @@ function create({ documentSelector = ['markdown'], getDiagnosticOptions = async
|
|
|
232
232
|
return ls.getFoldingRanges(document, token);
|
|
233
233
|
}
|
|
234
234
|
},
|
|
235
|
+
provideHover(document, position, token) {
|
|
236
|
+
if (prepare(document)) {
|
|
237
|
+
return ls.getHover(document, position, token);
|
|
238
|
+
}
|
|
239
|
+
},
|
|
235
240
|
provideReferences(document, position, referenceContext, token) {
|
|
236
241
|
if (prepare(document)) {
|
|
237
242
|
return ls.getReferences(document, position, referenceContext, token);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "volar-service-markdown",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.44",
|
|
4
4
|
"description": "Integrate vscode-markdown-languageservice into Volar",
|
|
5
5
|
"homepage": "https://github.com/volarjs/services/tree/master/packages/markdown",
|
|
6
6
|
"bugs": "https://github.com/volarjs/services/issues",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"optional": true
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "c4fa09f8f3858532e806d6b2ec9c65eecb66b1a1"
|
|
45
45
|
}
|