frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

Kotlin-Lsp: Kotlin Language Server and Plugin for Visual Studio Code

https://github.com/Kotlin/kotlin-lsp
67•todsacerdoti•4h ago

Comments

flykespice•3h ago
It's great jetbrains finally taking some babysteps to support an official language server for VSCode after some great resilience from them.

I know it's a difficult spot because such effort will also indirectly compete with their main product which is an IDE, so I'm not very optimistic it'll last.

lucasyvas•2h ago
Does Fleet not use LSP?
yonatan8070•2h ago
Considering how non-mature this LSP server is, probably not, Fleet probably uses whatever internal protocols JetBrains use inside their IDEs
someothherguyy•1h ago
> Backend – a headless service that does the heavy lifting: indexing, static analysis, advanced search, navigation, and the like. Every such operation is initiated by a request from the workspace, which then processes the response and dispatches the data to the components that require it.

> As a backend, you can use a headless IntelliJ IDEA or a language server.

https://www.jetbrains.com/help/fleet/architecture-overview.h...

mohamez•2h ago
>I know it's a difficult spot because such effort will also indirectly compete with their main product which is an IDE, so I'm not very optimistic it'll last.

I would say this if this step was taking early while Kotlin is still a new language in the market, but I think their late decision to develop an official LSP for Kotlin is because of reasons you just mentioned, but maybe they changed their minds because they saw other benifits including a wide adoption of Kotlin.

wiseowise•2h ago
It also helped that whenever JB posted a Kotlin questionnaire there would be dozens of people asking “LSP?”.
sureglymop•2h ago
This is good, glad they're realizing this is needed.
wiseowise•2h ago
Jesus Christ, finally!
directstar2•2h ago
I wonder what triggered the sudden change of mind.

They have been pretty firm on wanting keeping it closed for the purpose of giving an edge to the Jetbrain IDE's

wiseowise•2h ago
Kotlin adoption has been stagnating recently (subjectively) and VSCode + forks have massive market share.

It was extremely shortsighted to think that a single language would sway people to IntelliJ instead of just limiting Kotlin’s growth.

clumsysmurf•10m ago
Kotlin dominates Android development, but Android Studio is free. Google has become more and more hostile towards indie Play Store developers, so in 2025 it is more risky and less lucrative. Kotlin's "home turf" (Android) may be losing developers faster faster than Jetbrains can gain them on other platforms.

I assume its will be a polyglot world for some time to come, and devs that decide to retool into another stack could use anything else, leaving Kotlin behind.

mohamez•2h ago
One of the reasons might be that they realized that the absense of an official LSP for Kotlin will hinder its wide adoption by new developers who want to try Kotlin but don't want to move away from their favorite IDEs.
TheWiggles•2h ago
Supposedly Kotlin usage has gone down a little bit in the last TIOBE Index. So I think they are trying to get Kotlin usage up.

https://www.tiobe.com/tiobe-index/

xolve•1h ago
Most LLM based code-gen are VSCode forks. This reason would have certainly been on the list.
rochak•35m ago
I (and countless others I know) simply refuse to learn/use a language that locks you in an ecosystem. I haven’t taken a Kotlin, C# or any of the Apple proprietary tech jobs and never will.
travisgriggs•2h ago
I think it’s admirable that there’s a generic language server for Kotlin. Others, such as zed can benefit from this as well.

That said, I would much rather use AndroidStudio for Kotlin. Hands down. I use VSCode only when I can’t find something better. I recently switched my Elixir dev to Zed and am happy with that. Pretty much only thing I choose to use VSCode for these days is my ansible setups. Otherwise:

- Pycharm -> Python

- Xcode -> Swift

- Android Studio -> Kotlin

- Zed for Elixir/Phoenix

- Nova for embedded C code

- vim for scripts and quick edits of any of the above

VSCode for everything is like using a multitool to do woodworking in a garage. When you’re hiking or on a trip, a lightweight do it all tool has advantages. But I think it’s important to remember what IDE stands for.

ashikns•2h ago
On a different perspective, I love that VS Code supports so many things. As full stack dev I have to work with Python/TypeScript/C# interchangeably, often in the same project. I can easily switch between projects with the same editor window, and I get to use the same keybinds.
someothherguyy•1h ago
That is nice, but not much different from jetbrains IDEs that can do this as well?

The issue with the VSCode ecosystem is that extensions can conflict, die, etc, and that is very annoying when setting up environments takes a long time, IMO.

wiseowise•1h ago
Such as IntelliJ Ultimate that doesn’t have C++ integration, or CLion that can’t have Ruby integration or dozens of other combinations that happen in the field but not possible in IntelliJ.

Truly not that different from IntelliJ!

someothherguyy•1h ago
Neither does VSCode. They are extensions, which are analogous to plugins in the JetBrains ecosystem. Although, it seems like there used to be way more plugin authors for language support pre-vscode/atom/sublime-text.

You can use the JetBrains launcher to switch between projects in another JetBrains IDE though. Also, I think you can do single window mode in Ultimate to do a lot.

wiseowise•1h ago
I can combine every possible language on earth that has LSP in one VSCode instance. You can’t do that in IntelliJ.
someothherguyy•1h ago
https://plugins.jetbrains.com/docs/intellij/language-server-...
wiseowise•13m ago
a)

> The integration with the Language Server Protocol is created as an extension to the commercial IntelliJ-based IDEs. Therefore, plugins using Language Server integration are not available in JetBrains products like IntelliJ IDEA Community Edition and Android Studio from Google.

b) I thought IntelliJ code analysis is so much more superior? If you’re using LSP, what’s the point of IntelliJ anyway? Sluggish ui?

suby•53m ago
I've been using CLion since 2017. I recently switched to Helix, and one of the refreshing things about this has been that I'm now in an editor that can seamlessly handle every language or text file type. I think switching between editors was slowing me down and causing friction.

With Jetbrains, while there are plugins for other languages, it's hit and miss in my experience. Managing multiple IDE's was simply annoying, even things such as ensuring your settings are synced across everything was an issue. A different editor per language feels like a decision made for business needs and not user needs.

Which isn't to say that their IDE's are bad or anything, they are good. But they would be a lot better if they didn't take their product and split it up for each mainstream language.

pjmlp•1h ago
Are they going to kill it in one year, as they did with the Eclipse plugin, after going big on Android?
mdaniel•1h ago
> Currently, the LSP implementation is partially closed-source

What. the. fuck.

So, it's Apache 2 for the TypeScript, seems to ship an Apache 2 copy of IntelliJ (just like any Java language server), but smuggles some kind of binary. They truly have lost their way

jillesvangurp•8m ago
> Currently, the LSP implementation is partially closed-source, primarily for the sake of development speed convenience -- it heavily depends on parts of IntelliJ, Fleet, and our distributed Bazel build that allows us to iterate quickly and experiment much faster, cutting corners and re-using internal infrastructure where it helps. After the initial stabilization phase and defining the final set of capabilities, we will de-couple the LSP implementation from the internal repository and build pipelines and open source it completely

The full quote ...

Instead of working on this behind closed doors for the next year or so and then open sourcing everything, they are releasing some open source now with the intention to open source the rest later. I see no problem with that. Seems pragmatic. More companies should do that.

Bottom line, you are getting free stuff now. Some of it OSS now. All of it OSS later. No need to get upset.

satoru42•1h ago
Got the following error when trying to install it on Cursor:

> Error: Unable to install extension 'jetbrains.kotlin' as it is not compatible with VS Code '1.96.2'.

Fold 'N Fly » Paper Airplane Folding Instructions

https://www.foldnfly.com/index.html#/1-1-1-1-1-1-1-1-2-1
1•Tomte•2m ago•0 comments

Postgres Chooses Which Index to Use for a Query (2022)

https://pganalyze.com/blog/how-postgres-chooses-index
1•Tomte•2m ago•0 comments

My AI told me my dog is 12% Husky, 88% Couch Potato. AMA

https://breed.dog
1•gamificationpan•2m ago•1 comments

Swap your video's voice in minutes with no reshoots required

https://techonda.medium.com/give-your-videos-a-new-voice-with-voice-changing-ai-d68f4c6c0704
1•bamboriz•3m ago•0 comments

SignGemma – a sign language understanding model

https://twitter.com/googleaidevs/status/1925205852677460101
1•badmonster•6m ago•1 comments

Reinforcement Learning Finetunes Small Subnetworks in Large Language Models

https://arxiv.org/abs/2505.11711
1•jonbaer•10m ago•0 comments

UK-wide parking app to be rolled out by industry bodies after pilot scheme

https://www.theguardian.com/money/2025/may/21/uk-wide-parking-app-to-be-rolled-out-by-industry-bodies-after-pilot-scheme
1•beardyw•11m ago•0 comments

OpenAI buys iPhone architect's startup for $6.4B

https://www.theguardian.com/technology/2025/may/21/openai-iphone-io
1•beardyw•12m ago•0 comments

Power generation from nuclear fusion not expected in the foreseeable future [pdf]

https://www.econstor.eu/bitstream/10419/316364/1/1923868063.pdf
1•vixen99•13m ago•1 comments

Researchers pioneer use of AI to reduce bias in sports scouting

https://techxplore.com/news/2025-05-ai-bias-sports-scouting.html
2•MarcoDewey•13m ago•0 comments

Why does Debian change software?

https://blog.liw.fi/posts/2025/why-debian-changes/
2•tapanjk•14m ago•0 comments

Your Fine-Tuning Data Could Be Stolen

https://arxiv.org/abs/2505.15656
2•50kIters•15m ago•0 comments

Can a large Coke and fries stop your migraine?

https://www.rte.ie/brainstorm/2025/0521/1514105-migraines-viral-hack-large-coke-fries/
1•austinallegro•18m ago•1 comments

Libinput Preparing to Introduce a Lua-Based Plugin System for Modifying Devices

https://www.phoronix.com/news/libinput-Lua-Plugin-System
1•todsacerdoti•20m ago•0 comments

How to Become Gently Interesting

https://lananhngvu.substack.com/p/how-to-become-gently-interesting
1•longie•22m ago•0 comments

Show HN: I made a 1 minute portfolio website builder for designers and devs

https://portfo.ly/
2•eduhud•27m ago•0 comments

Evidence-Led > Data-Informed

https://www.leadinginproduct.com/p/evidence-led
1•benkan•30m ago•0 comments

Brembo develops brakes with almost no brake dust and less wear

https://arstechnica.com/cars/2025/05/brembos-new-brakes-cut-particulate-emissions-by-90-percent/
3•benkan•32m ago•0 comments

Sag-Aftra Calls Out 'Fortnite' over Darth Vader AI Voice

https://gizmodo.com/fortnite-ai-darth-vader-sag-aftra-dispute-2000604222
1•benkan•33m ago•0 comments

Show HN: Nostria – A peer-to-peer social protocol that avoids centralized relays

https://www.nostria.app/funding
1•shegby•33m ago•0 comments

Chrome enhanced spell check sends your input to Google

https://support.google.com/chrome/a/answer/13616585?hl=en
1•okl•35m ago•0 comments

Python is far beyond you

https://github.com/SPLWare/esProc/wiki/Actually,-Python-is-far-beyond-you
1•swqliyt•36m ago•0 comments

Using DuckDB databases as lightweight Data Lake access layer

https://tobilg.com/using-duckdb-databases-as-lightweight-data-lake-access-layer
1•tanelpoder•38m ago•0 comments

Recent Disruptive Changes from Setuptools

https://lwn.net/SubscriberLink/1020576/fcef31015579a9b1/
2•todsacerdoti•38m ago•0 comments

Stoolap: High-performance, SQL database in pure Go with zero dependencies

https://github.com/stoolap/stoolap
1•thunderbong•39m ago•0 comments

Oodle 2.9.14 and Intel 13th/14th gen CPUs

https://fgiesen.wordpress.com/2025/05/21/oodle-2-9-14-and-intel-13th-14th-gen-cpus/
3•matt_d•41m ago•0 comments

Hacker who breached communications app stole data from across US Government

https://www.reuters.com/world/us/hacker-who-breached-communications-app-used-by-trump-aide-stole-data-across-us-2025-05-21/
3•thunderbong•42m ago•0 comments

voyage-3.5 and voyage-3.5-lite: improved quality for a new retrieval frontier

https://blog.voyageai.com/2025/05/20/voyage-3-5/
1•fzliu•45m ago•0 comments

Mice lacking this amino acid lost 30% of their body weight

https://www.nature.com/articles/d41586-025-01597-9
1•XzetaU8•45m ago•2 comments

HSBC high street bank staff face bonus cuts over remote working

https://www.theguardian.com/business/2025/may/21/hsbc-high-street-staff-face-bonus-cut-if-they-dont-come-into-work-enough
1•edg5000•50m ago•0 comments