mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-25 01:34:02 +00:00
pass through remote kernel's language on legacy selection
This commit is contained in:
parent
1cfcdfa7ac
commit
983e878cff
1 changed files with 3 additions and 2 deletions
|
@ -258,8 +258,9 @@ impl ReplStore {
|
|||
runtime_specification.kernelspec.language.to_lowercase()
|
||||
== language_at_cursor.code_fence_block_name().to_lowercase()
|
||||
}
|
||||
KernelSpecification::Remote(_) => {
|
||||
unimplemented!()
|
||||
KernelSpecification::Remote(remote_spec) => {
|
||||
remote_spec.kernelspec.language.to_lowercase()
|
||||
== language_at_cursor.code_fence_block_name().to_lowercase()
|
||||
}
|
||||
})
|
||||
.cloned()
|
||||
|
|
Loading…
Reference in a new issue