72

Claude Code LSP

“ That's not an incremental improvement. That's a category change in how Claude Code navigates your code.”

Literally everything is written by AI now, even top HN articles.

an hour agosteeleyespan

I don't mind if people use AI to help them write, but when I see this kind of thing, it implies to me that they're barely even skimming it before posting. Surely people don't want this super cliche AI-hype-man tone in their blog posts, right? And if they haven't taken the time to at least skim through it and iterate on basic style, why should I assume it's worth my time to read it?

an hour agomistercow

> Literally everything is written by AI now

Which explains the exceedingly stupid idea. If you want an LSP for Claude, you need an LSP for English. Wait, let my AI generate an article about that!

an hour agozombot

I wish AI written submissions were banned.

2 hours agoAntiDyatlov

There's a "flag" button. See an AI-written submission? Press it.

an hour agoJasonADrury

Same. I can't this tone. I don't understand why modern LLMs can't show more variability in tone and writing style by default.

an hour agorossant

I wonder why circles can't have corners.

39 minutes agoclassified

From the intro section:

> That's not an incremental improvement. That's a category change in how Claude Code navigates your code.

I don’t know anything about the human(s) behind this project, assuming there are any, and intend no malice towards them, but when I encounter language like this, it just kills my enthusiasm for a project.

I wonder if that reaction is now, or will become, a majority one, and that AI flavoured language and products will face some audience headwinds if there aren’t indications of some level of human authorship / editing.

an hour agocolinhb

Had trouble with their two marketplace's as there's also another `anthropics-claude-code`.

Here's the commands to install the correct marketplace and LSP plugins:

/plugin marketplace add anthropics/claude-plugins-official

/plugin install typescript-lsp@claude-plugin-directory

See all LSP's names here: https://code.claude.com/docs/en/discover-plugins#code-intell...

an hour agondom91

For what's it's worth I never enabled anything and it proactively encouraged me to install various lsp plugins and prompted me to accept to install in most languages I've tried.

2 hours agojasonjmcghee

since its flagged - gotta comment; I am not the author of the post. I was reading it in passing and thought it was interesting enough to submit. Indeeed did not paid enough attention as to how much "ai written" it was.

an hour agoLexSiga

It's not hidden at all, Claude pushes it even tho it poisons the context after every edit with false positives because it's always out of date. This feature should be hidden given how half baked it is.

an hour agorvcdbn

In the same way that good AI coding requires testing, project management and architecture, good AI writing requires you to fill the editor role. Be ruthless. Read line by line. By all means tell the agent to fix stuff. If you don't do this, your blog posts sound generic and lazy.

2 hours agosmallerfish

I had great results using this for the past few months, it’s the same idea but implemented as an MCP: https://github.com/oraios/serena

2 hours agodayglo

Serena eats context for lunch (and dinner).

2 hours agore-thc

Not sure if it's Claude Code or golsp, but I had to uninstall the plugin. Regularly makes Claude Code crash with golsp going to 100% CPU usage.

2 hours agodanslo

I assume if this was working it would allow Claude to much more quickly gain an initial understanding of a repo on initial use, no?

2 hours agotietjens

This blog post is in the uncanny valley of "looks and sounds nice, but a bit too nice, could be useful, could be useless AI-slop, idk".

2 hours agoahofmann

I’m pretty sure it’s AI written. It has the common AI style of, “That’s not just X! It’s Y!”

Personally I find this annoying. I use AI for my writing but painstakingly try to maintain my own voice rather than lazily edit my prose into LinkedIn-speak.

2 hours agotyleo

I’m not usually bothered by this, but the style of this post made me feel mildly stressed while reading it. Not everything needs drama.

2 hours agomft_
[deleted]
2 hours ago

I'd test it but Claude is down

2 hours ago_joel

https://code.claude.com/docs/en/discover-plugins#code-intell...

Why are they doing this with a client plugin per server? It's antithetical to the whole point of LSP?

(At least they're reusing existing servers I suppose, but it stops me using whatever arbitrary one I want, as I could if there was just a single client with arbitrary configuration.)

2 hours agoOJFord

It’s not enabled by default because there are still bugs eg race condition issues.

Check on GitHub.

2 hours agore-thc

I never got it working for even once. it's an epic failure on Anthropic

2 hours agojohnmiroki

Works for all users except for one. Maybe it's not Anthropic's epic failure, but that one user's?

an hour agodrcongo

I built this myself for my agents a long time ago from ctags.

2 hours agouser3939382

I hope I’m not talking to an AI. Can you explain how you wire up ctags to Claude code and keep them upto-date?

an hour agosathish316

Just install universal-ctags from your package manager and it’s just a command line interface to build them / regen. Then you can build custom things on top of that. It outputs a big index to a cache dir. Not an AI for the record.

an hour agouser3939382

That is when the LSP works, now you've just introduced another thing that may fail.

2 hours agotheknarf
[deleted]
2 hours ago

LSPs suck. Compilers should be able to re-use their cache for queries, interfaced with through a simple CLI.

They should not need more RAM than what the compiler uses.

Most LSPs don't work well for big projects or with non-standard setups like Bazel.

Edit: is this really so controversial it has to be downvoted?

2 hours agotempaccount420

But now your asking the compiler to also be a daemon. The compiler devs to add and maintain a not insignificant feature. The compiler to keep everything it caches for queries (whoops, look at that RAM usage climb!), and to cache data suitable for answering LSP queries (gosh! It's climbing a lot!)

2 hours agoMadnessASAP

Why does it need to be a daemon? Why isn't the on-disk cache enough? Running a compiler without making changes is instant. Many operations of LSPs feel slower than compiler's incremental compilation.

What cache is needed that the compiler doesn't already have?

an hour agotempaccount420

Compilers only do one file at a time, but an LSP needs to parse all the files.

Also, an LSP needs to update incrementally when you edit the file, not just when you compile.

2 hours agotlb

And not every language is compiled. And not everything that has an LSP is even a language. I don't think the gp comment was very thought through.

an hour agodrcongo

One of the many advantages of LSPs is that they can continue to work even under the condition of compilation error.

an hour agoxnorswap

This is not unique to LSPs, a good compiler will do the same.

32 minutes agotempaccount420

It's sad to see that the sane opinion is so heavily downvoted.

LSP as a protocol is fine, but the actual technical implementation of JSON RPC is braindead. Only web devs that don't know anything about native code could devise such an abomination. What happened to plugins and dll's?