editors

Discussion about all editors used for Clojure/ClojureScript
snoe 2019-03-31T08:08:21.008400Z

I've been doing some work on my LanguageServer for Clojure lately. I use it every day alongside fireplace in neovim and a coworker is using it in emacs but I bet it can improve almost any editor's clojure experience. Hopefully I can get more people kicking the tires in other editors with LSP clients. Let me know what you think or if you have any questions or problems. https://github.com/snoe/clojure-lsp

🎉 4
sparkofreason 2019-04-04T01:31:05.009Z

I'd love to give it a try with VSCode, but it isn't clear from the example how to get it working. Is there some documentation I'm missing? Thanks.

sparkofreason 2019-04-04T01:43:44.009200Z

Ah, think I found it.

romain 2019-04-04T13:52:08.009400Z

You use LSP instead of clojure-mode? Does it work well with CIDER? And what about ClojureScript?

âž• 1
snoe 2019-04-05T00:30:55.017100Z

It can be used in addition to clojure-mode and cider, the repl is still very useful for writing code but LSP seems a bit nicer for navigating than cider or cider-refactor. In our project not all code gets loaded into the repl, so things like find usages from cider refactor tend to miss things. ClojureScript works as well as clojurr and cljc works about 95% of the time in my experience.

romain 2019-04-05T06:14:30.021500Z

I should give it a try, thanks 🙂