Daniel Martín
Daniel Martín
``` M-x lsp-treemacs-XXX - takes the focus C-u M-x lsp-treemacs-XXX - does not take the focus. ``` Looks good. I can implement that functionality. We should do the same for...
Yes, for now sourcekit-lsp requires a Swift PM package that provides the necessary compile flags. The second warning can be ignored for Swift projects. It only applies to projects that...
Thanks for the feedback! I agree, there's really no reason why `swift-helpful` should be coupled to `lsp-mode` only. We would need to add Swift (SourceKit-LSP) support to eglot first, but...
Alexander Hagerman writes: > Hi, I've been using emacs for a while, but by no means a pro. I got > swift lsp and Eglot working, plus some flycheck docs...
Alexander Hagerman writes: > That worked. I'll dig into making sure the other symbols are > indexed. Sorry for the noise, and thank you for the assistance. Feel free to...
Thanks for the report. Do you have a sample project where this behavior is reproducible? Can you post the output of running `M-x company-diag`?
@jandamm, SourceKit-LSP has just implemented server-side filtering of completion results (see https://github.com/apple/sourcekit-lsp/pull/298). This should improve performance, specially on Emacs
Instead of tweaking client priorities (which are not meant to be configurable per project), we can suggest configuring `lsp-enabled-clients` per project instead.
Could you provide a sample project to reproduce the issue?
I have this in my personal configuration: ``` (setq lsp-ui-doc-enable nil) :bind (:map lsp-mode-map ("C-c C-b" . lsp-ui-doc-glance)) ``` Disabling by default would make it less discoverable. With `tooltip-mode` we...