This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-10-02
Channels
- # announcements (13)
- # babashka (42)
- # beginners (29)
- # calva (39)
- # cider (15)
- # clerk (10)
- # clojure (67)
- # clojure-europe (18)
- # clojure-hungary (2)
- # clojure-nl (1)
- # clojure-norway (12)
- # clojure-uk (7)
- # clojuredesign-podcast (14)
- # clojurescript (19)
- # datalevin (1)
- # datascript (5)
- # emacs (4)
- # events (2)
- # fulcro (5)
- # graalvm (5)
- # hyperfiddle (23)
- # incanter (3)
- # jobs (2)
- # lsp (8)
- # missionary (15)
- # off-topic (45)
- # portal (41)
- # practicalli (1)
- # re-frame (3)
- # reitit (6)
- # releases (2)
- # remote-jobs (1)
- # sci (1)
- # shadow-cljs (35)
- # solo-full-stack (8)
- # tools-deps (4)
Hi! I have a problem with autocompletions in lsp-mode. I don't get any 😄 lsp-enable-completion-at-point is set to t. for example if i type <imported namespace>/ i don't get a list of symbols from that namespace. Update: it works if i disable and re-enable lsp-completion-mode for some reason
Maybe lsp-completion-mode is not being enabled properly when you open a buffer? Maybe try with lsp-start-plain + https://emacs-lsp.github.io/lsp-mode/tutorials/clojure-guide/#basic-configuration
@U050SC7SV yes, that seems to be the problem. It works before i do jack-in
No idea how to fix it 😄
You can choose to disable cider for completion, removing it from completion functions. I don’t this on my config
(add-hook 'cider-mode-hook (lambda () (remove-hook 'completion-at-point-functions #'cider-complete-at-point t)))
@USM5W14G5 do https://github.com/ericdallo/dotfiles/blob/master/.config/doom/config.el#L61 and you should be good