Remix.run Logo
spqw 11 hours ago

I am surprised to see very few setups leveraging LSP support. (Language Server Protocol) It has been added to Claude Code last month. Most setups rely on naive grep.

d4rkp4ttern 7 hours ago | parent | next [-]

LSP is currently broken in CC:

https://github.com/anthropics/claude-code/issues/15168

woggy 10 hours ago | parent | prev | next [-]

I've written a few terminal tools on top of Roslyn to assist Claude in code analysis for C# code. Obviously the tools are also written with the help of Claude. Worked quite well.

aqula 10 hours ago | parent | prev [-]

LSP is not great for non-editor use cases. Everything is cursor position oriented.

WilcoKruijer 3 hours ago | parent | next [-]

There are actions that don't require cursor position, like document/workspace symbols, that could be useful.

HarHarVeryFunny 6 hours ago | parent | prev [-]

Yes, something like TreeSitter would seem to be of more value - able to lookup symbols by name, and find the spans of source code where they are defined and used.