emacs-lsp-proxy 0.7.0 → 0.7.1

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.
Files changed (2) hide show
  1. package/README.md +8 -0
  2. 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.0",
3
+ "version": "0.7.1",
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.0",
24
- "@emacs-lsp-proxy/darwin-arm64": "0.7.0",
25
- "@emacs-lsp-proxy/linux-x64": "0.7.0",
26
- "@emacs-lsp-proxy/linux-arm64": "0.7.0",
27
- "@emacs-lsp-proxy/win32-x64": "0.7.0"
23
+ "@emacs-lsp-proxy/darwin-x64": "0.7.1",
24
+ "@emacs-lsp-proxy/darwin-arm64": "0.7.1",
25
+ "@emacs-lsp-proxy/linux-x64": "0.7.1",
26
+ "@emacs-lsp-proxy/linux-arm64": "0.7.1",
27
+ "@emacs-lsp-proxy/win32-x64": "0.7.1"
28
28
  },
29
29
  "license": "ISC",
30
30
  "description": "An LSP client for Emacs implemented in Rust."