I’ve start using Spacemacs and now getting these pop ups when I put my cursor on a function? how do I hide them?
@grierson my fist guess this is LSP popup. If not using LSP for any language, then remove the lsp layer from.spacemacs.
Or if using LSP but not for Clojure, then set the Clojure backend to cider using a layer variable
https://clojurians.slack.com/archives/C09C8GRLY/p1608311515221700
If you want to use LSP with Clojure, then take a look at the lsp-mode website and figure out which configs you wish to disable (not something I understand myself, sorry).
in dotspacemacs-configuration-layers, use:
(lsp :variables
lsp-ui-doc-enable nil)
I had to disable these for R. Couldn't find it in the ESS documentation, eventually figured out LSP was the culprit.
Thanks! I’ve been reading all your guides. It really helped me get started with Spacesmacs! ❤️👍🙏
yeh, that got it! Thank you! 🙂