lsp

adham 2025-07-02T07:00:21.040899Z

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 fine

ericdallo 2025-07-02T10:28:02.467139Z

Are you sure you don't have a :skip-comments true in your clj-kondo config?

adham 2025-07-02T11:41:29.839409Z

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!