Skip to content

Commit 1672771

Browse files
committed
Fixed highlighting
1 parent 5996792 commit 1672771

File tree

1 file changed

+8
-1
lines changed
  • src/main/kotlin/org/jetbrains/kotlin/jupyter

1 file changed

+8
-1
lines changed

src/main/kotlin/org/jetbrains/kotlin/jupyter/protocol.kt

+8-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ fun JupyterConnection.Socket.shellMessagesHandler(msg: Message, repl: ReplForJup
2929
"protocol_version" to protocolVersion,
3030
"language" to "Kotlin",
3131
"language_version" to KotlinCompilerVersion.VERSION,
32-
"language_info" to jsonObject("name" to "kotlin", "file_extension" to "kt")
32+
"language_info" to jsonObject(
33+
"name" to "kotlin",
34+
"codemirror_mode" to "text/x-kotlin",
35+
"file_extension" to "kt"
36+
)
3337
)))
3438
"history_request" ->
3539
send(makeReplyMessage(msg, "history_reply",
@@ -122,6 +126,9 @@ fun JupyterConnection.Socket.shellMessagesHandler(msg: Message, repl: ReplForJup
122126
connection.iopub.send(makeReplyMessage(msg, "status", content = jsonObject("execution_state" to "idle")))
123127
connection.contextMessage = null
124128
}
129+
"comm_info_request" -> {
130+
send(makeReplyMessage(msg, "comm_info_reply", content = jsonObject("comms" to jsonObject())))
131+
}
125132
"complete_request" -> {
126133
val code = msg.content["code"].toString()
127134
val cursor = msg.content["cursor_pos"] as Int

0 commit comments

Comments
 (0)