Skip to content

Commit 81bcc03

Browse files
committed
Upgrade lsp4ij to 0.13.0
1 parent f5dc4b9 commit 81bcc03

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ repositories {
2020
dependencies {
2121
intellijPlatform {
2222
intellijIdeaCommunity("2023.3.6")
23-
plugin("com.redhat.devtools.lsp4ij:0.9.0")
23+
plugin("com.redhat.devtools.lsp4ij:0.13.0")
2424
pluginVerifier()
2525
zipSigner()
2626
instrumentationTools()

src/main/kotlin/boo/fox/haskelllsp/HaskellLanguageServerFactory.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ class HaskellLanguageServer(project: Project) : ProcessStreamConnectionProvider(
4848

4949
// enabling the semanticTokens plugin is required for semantic tokens support
5050
class HaskellLanguageClient(project: Project) : LanguageClientImpl(project) {
51-
override fun createSettings(): Any? =
51+
override fun createSettings(): Any =
5252
mapOf("haskell" to mapOf("plugin" to mapOf("semanticTokens" to mapOf("globalOn" to true))))
5353

54-
override fun handleServerStatusChanged(serverStatus: ServerStatus?) {
54+
override fun handleServerStatusChanged(serverStatus: ServerStatus) {
5555
if (serverStatus == ServerStatus.started) {
5656
triggerChangeConfiguration()
5757
}

0 commit comments

Comments
 (0)