This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-08-02
Channels
- # announcements (11)
- # aws (3)
- # babashka (34)
- # beginners (20)
- # biff (2)
- # calva (3)
- # cherry (29)
- # cider (6)
- # cljs-dev (9)
- # clojure (124)
- # clojure-europe (12)
- # clojure-norway (5)
- # clojure-uk (2)
- # clojurescript (32)
- # conjure (11)
- # datalevin (1)
- # datomic (16)
- # deps-new (1)
- # etaoin (6)
- # holy-lambda (10)
- # honeysql (28)
- # hyperfiddle (21)
- # jackdaw (2)
- # jobs (2)
- # leiningen (15)
- # missionary (12)
- # off-topic (132)
- # other-languages (1)
- # pathom (13)
- # rdf (10)
- # re-frame (8)
- # reagent (5)
- # releases (1)
- # remote-jobs (4)
- # shadow-cljs (32)
- # tools-deps (6)
- # vim (15)
- # xtdb (24)
Any of you coc.nvim
folks know how to get rid of the documentation source links at the bottom of the floating window?
what are you using to show documentation? what's the command?
and ShowDocumentation is from their readme, right?
I've asked in the coc.nvim
gitter and they are usually super responsive so I'll update if I find a solution. I'm assuming I'm getting double links due to something going on between the lsp, conjure, coc.nvim, and coc-clojure (hey!) but I like things super clean so just want it all gone if possible.
yeah, of course. it's annoyed me too, i've just not followed up on it
looking at the hover.ts
code, i don't see anything that would cause it specifically. it might be something from clojure-lsp?
It might be lsp specific but hopefully there is a global config option to stop it. I don't get it in my Rust code but I get the same behavior in Go code. I haven't tested others
:hover
:hide-file-location?
set this to true
and i think it'll stop showing that
can be set either in .clojure-lsp/config.edn
or in coc-settings.json
: "clojure.initialization-options.hover": { "hide-file-location?": true }
Glad to help