Skip to content

Commit 44628da

Browse files
committed
Support Jupyter Lab console
1 parent 790a942 commit 44628da

File tree

1 file changed

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

1 file changed

+7
-1
lines changed

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

+7-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,13 @@ fun JupyterConnection.Socket.shellMessagesHandler(msg: Message, repl: ReplForJup
3333
"name" to "kotlin",
3434
"codemirror_mode" to "text/x-kotlin",
3535
"file_extension" to "kt"
36-
)
36+
),
37+
38+
// Jupyter lab Console support
39+
"banner" to "Kotlin language, version ${KotlinCompilerVersion.VERSION}",
40+
"implementation" to "Kotlin",
41+
"implementation_version" to KotlinCompilerVersion.VERSION,
42+
"status" to "ok"
3743
)))
3844
"history_request" ->
3945
sendWrapped(msg, makeReplyMessage(msg, "history_reply",

0 commit comments

Comments
 (0)