-
I am a big fan of Kotlin and language server. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, to get started developing, you want to be able to build the language server locally on your machine. If you're using VSCode, the easiest way to get started is to use the Kotlin extension. Make sure to have Java installed, then run ./gradlew :server:installDist to compile and package the language server (see {
"kotlin.languageServer.path": "<path to cloned kotlin-language-server repo>/server/build/install/server/bin/kotlin-language-server"
} and reloading your VSCode instance you should be able to use your newly built language server in a Kotlin project of your choice (e.g. If you have any questions, there's a Discord server for chatting. Cheers! |
Beta Was this translation helpful? Give feedback.
Hi, to get started developing, you want to be able to build the language server locally on your machine. If you're using VSCode, the easiest way to get started is to use the Kotlin extension. Make sure to have Java installed, then run
to compile and package the language server (see
BUILDING.md
for details). Then, by adding the following setting to your VSCode configuration:and reloading your VSCode instance you should be able to use your newly built language server in a Kotlin project of your choice (e.g.
kotlin-language-s…