Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the quote to avoid evaluating the list of LSP major mode #87

Merged
merged 1 commit into from
Feb 26, 2024

Conversation

vmfhrmfoaj
Copy link
Contributor

If LSP client has :major-modes (e.g., :major-modes '(perl-mode cperl-mode)), lsp-docker--create-activation-function-by-project-dir-and-base-client will return a function like below: When this function is called, major-modes list will be evaluated. It caused an error.

(lambda (current-file-name current-major-mode)
  (let ((current-project-root (lsp-workspace-root))
        (registered-project-root ,project-dir)
        (base-activation-fn nil)                   ; ,(lsp--client-activation-fn base-lsp-client) => nil
        (base-major-modes (perl-mode cperl-mode))) ; ,(lsp--client-major-modes base-lsp-client)   => (perl-mode cperl-mode)
    (and (f-same? current-project-root registered-project-root)
         (or (if (functionp base-activation-fn)
                 (funcall base-activation-fn current-file-name current-major-mode)
               nil)
             (-contains? base-major-modes current-major-mode)))))

If LSP client has `:major-modes` (e.g., `:major-modes '(perl-mode cperl-mode)`),
`lsp-docker--create-activation-function-by-project-dir-and-base-client` will return a function like below:
When this function is called, `major-modes` list will be evaluated. It caused an error.

```elisp
(lambda (current-file-name current-major-mode)
  (let ((current-project-root (lsp-workspace-root))
        (registered-project-root ,project-dir)
        (base-activation-fn nil)                   ; ,(lsp--client-activation-fn base-lsp-client) => nil
        (base-major-modes (perl-mode cperl-mode))) ; ,(lsp--client-major-modes base-lsp-client)   => (perl-mode cperl-mode)
    (and (f-same? current-project-root registered-project-root)
         (or (if (functionp base-activation-fn)
                 (funcall base-activation-fn current-file-name current-major-mode)
               nil)
             (-contains? base-major-modes current-major-mode)))))
```
@factyy factyy merged commit f5eb3f4 into emacs-lsp:master Feb 26, 2024
11 of 12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants