File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/kotlin/boo/fox/haskelllsp Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ repositories {
2020dependencies {
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()
Original file line number Diff line number Diff line change @@ -48,10 +48,10 @@ class HaskellLanguageServer(project: Project) : ProcessStreamConnectionProvider(
4848
4949// enabling the semanticTokens plugin is required for semantic tokens support
5050class 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 }
You can’t perform that action at this time.
0 commit comments