emacs-lsp-proxy 0.6.0 → 0.6.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 +7 -0
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -54,6 +54,9 @@ You can download the prebuilt binary from [releases](https://github.com/jadestro
54
54
  (use-package lsp-proxy
55
55
  ;; :load-path "/path/to/lsp-proxy"
56
56
  :config
57
+ ;; Optional: specify custom server path (if not using default auto-detection)
58
+ ;; (setq lsp-proxy-server-path "/custom/path/to/emacs-lsp-proxy")
59
+
57
60
  (add-hook 'tsx-ts-mode-hook #'lsp-proxy-mode)
58
61
  (add-hook 'js-ts-mode-hook #'lsp-proxy-mode)
59
62
  (add-hook 'typescript-mode-hook #'lsp-proxy-mode)
@@ -457,6 +460,7 @@ Below is a complete list of user-facing customization variables (`defcustom`) pr
457
460
  |----------|---------|-------------|
458
461
  | `lsp-proxy-log-file-directory` | `temporary-file-directory` | Directory where the external server writes its log file. Set to a persistent path if you want logs across restarts. |
459
462
  | `lsp-proxy-user-languages-config` | `${user-emacs-directory}/lsp-proxy/languages.toml` | User TOML config overriding/augmenting built-in language server definitions. Edited via `M-x lsp-proxy-open-config-file`. |
463
+ | `lsp-proxy-server-path` | `nil` | Path to the lsp-proxy server executable. If specified, this path will be used instead of auto-detection. If nil, lsp-proxy will automatically search for the executable in: 1) System PATH 2) Current directory 3) target/release directory. |
460
464
  | `lsp-proxy-log-max` | `0` | Max size (lines/events) of internal events buffer; `0` disables; `nil` infinite. Enable only while debugging. |
461
465
  | `lsp-proxy-log-level` | `0` | Verbosity: 0 none, 1 basic, 2 verbose. Increase for more diagnostic output (may impact performance). |
462
466
  | `lsp-proxy-log-buffer-max` | `message-log-max` | Controls Emacs-side *lsp-proxy-log* buffer retention. `nil` disables logging, integer truncates, `t` unlimited. |
@@ -573,6 +577,9 @@ LSP-Proxy provides comprehensive support for org-mode through the `lsp-proxy-org
573
577
  To enable LSP support in org-babel code blocks, add the following to your configuration:
574
578
 
575
579
  ```elisp
580
+ ;; Enable LSP Proxy support in org-mode
581
+ (add-hook 'org-mode-hook #'lsp-proxy-mode)
582
+
576
583
  ;; Enable LSP support in org-babel code blocks
577
584
  (setq lsp-proxy-enable-org-babel t)
578
585
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "emacs-lsp-proxy",
3
- "version": "0.6.0",
3
+ "version": "0.6.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.6.0",
24
- "@emacs-lsp-proxy/darwin-arm64": "0.6.0",
25
- "@emacs-lsp-proxy/linux-x64": "0.6.0",
26
- "@emacs-lsp-proxy/linux-arm64": "0.6.0",
27
- "@emacs-lsp-proxy/win32-x64": "0.6.0"
23
+ "@emacs-lsp-proxy/darwin-x64": "0.6.1",
24
+ "@emacs-lsp-proxy/darwin-arm64": "0.6.1",
25
+ "@emacs-lsp-proxy/linux-x64": "0.6.1",
26
+ "@emacs-lsp-proxy/linux-arm64": "0.6.1",
27
+ "@emacs-lsp-proxy/win32-x64": "0.6.1"
28
28
  },
29
29
  "license": "ISC",
30
30
  "description": "An LSP client for Emacs implemented in Rust."