Hey all
I'm having issues with using lsp-mode (Emacs) in a comment form
Trying to run lsp-find-definition on println here returns LSP :: Not found for: println
(comment
(println "hello"))
However outside the comment block everything works fineAre you sure you don't have a :skip-comments true in your clj-kondo config?
I don't have a config.edn but I ran a grep and sure enough found:
./.clj-kondo/imports/cnuernber/ham-fisted/config.edn:1:{:skip-comments true...
I set my own config.edn with the value of it to false and now it works
Thank you!