emacs-lsp-proxy 0.7.0 → 0.7.2
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/README.md +8 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -599,9 +599,17 @@ To enable GitHub Copilot integration, you need to configure the Copilot language
|
|
|
599
599
|
|
|
600
600
|
|
|
601
601
|
```toml
|
|
602
|
+
# this is already included in the built-in languages.toml
|
|
602
603
|
[language-server.copilot]
|
|
603
604
|
command = "copilot-langauge-server"
|
|
604
605
|
args = ["--stdio"]
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
[[language]]
|
|
609
|
+
name = "markdown"
|
|
610
|
+
language-id = "markdown"
|
|
611
|
+
file-types = ["md"]
|
|
612
|
+
language-servers = [{ name = "copilot", support-workspace = true }]
|
|
605
613
|
```
|
|
606
614
|
|
|
607
615
|
### Available Commands
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "emacs-lsp-proxy",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"postinstall": "node ./install.js"
|
|
6
6
|
},
|
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
],
|
|
21
21
|
"author": "jadestrong",
|
|
22
22
|
"optionalDependencies": {
|
|
23
|
-
"@emacs-lsp-proxy/darwin-x64": "0.7.
|
|
24
|
-
"@emacs-lsp-proxy/darwin-arm64": "0.7.
|
|
25
|
-
"@emacs-lsp-proxy/linux-x64": "0.7.
|
|
26
|
-
"@emacs-lsp-proxy/linux-arm64": "0.7.
|
|
27
|
-
"@emacs-lsp-proxy/win32-x64": "0.7.
|
|
23
|
+
"@emacs-lsp-proxy/darwin-x64": "0.7.2",
|
|
24
|
+
"@emacs-lsp-proxy/darwin-arm64": "0.7.2",
|
|
25
|
+
"@emacs-lsp-proxy/linux-x64": "0.7.2",
|
|
26
|
+
"@emacs-lsp-proxy/linux-arm64": "0.7.2",
|
|
27
|
+
"@emacs-lsp-proxy/win32-x64": "0.7.2"
|
|
28
28
|
},
|
|
29
29
|
"license": "ISC",
|
|
30
30
|
"description": "An LSP client for Emacs implemented in Rust."
|