This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-05-28
Channels
- # announcements (2)
- # aws (21)
- # babashka (4)
- # babashka-sci-dev (17)
- # beginners (3)
- # cider (16)
- # clj-kondo (61)
- # clojure (122)
- # clojure-europe (11)
- # clojure-spec (3)
- # clojurescript (2)
- # conjure (19)
- # helix (9)
- # hyperfiddle (2)
- # inf-clojure (18)
- # lsp (12)
- # off-topic (15)
- # react (2)
- # releases (1)
- # shadow-cljs (40)
- # spacemacs (4)
- # tools-deps (5)
- # vim (15)
Good day,
How can I disable these`reference`signatures that show up next to functions and def
's?
e.g:
(defn my-func [arg1 arg2] (stuff arg1 arg2)) 2 references
SPC m T l l
or , T l l
to toggle lsp-lens-mode, which shows references and number of unit tests
👍 1
Or add lsp-lens-enable nil
as a variable to the lsp layer in your Spacemacs configuration
👍 1
For example:
(lsp :variables
lsp-ui-doc-enable nil ;; disable all doc popups
lsp-ui-sideline-enable nil ;; disable sideline bar for less distraction
treemacs-space-between-root-nodes nil ;; no spacing in treemacs views
lsp-lens-enable nil
)
This will switch the lens off by default👍 1