mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-21 22:11:40 +07:00
PY-77242 Jupyter(fix): Jupyter: Make markdown behaviour as in JupyterLab
(cherry picked from commit 186672d925b527f1a666c815f8b370d51ae1c2e3) GitOrigin-RevId: 3e0cae82de3514cd9de8a9ec4c0cf68e092b7f35
This commit is contained in:
committed by
intellij-monorepo-bot
parent
34c9b87f23
commit
ac9aaf7d70
@@ -485,8 +485,12 @@ class NotebookCellInlayManager private constructor(
|
||||
return cells[index]
|
||||
}
|
||||
|
||||
fun getCell(interval: NotebookCellLines.Interval): EditorCell {
|
||||
return cells[interval.ordinal]
|
||||
}
|
||||
|
||||
fun getCell(pointer: NotebookIntervalPointer): EditorCell {
|
||||
return getCell(pointer.get()!!.ordinal)
|
||||
return getCell(pointer.get()!!)
|
||||
}
|
||||
|
||||
fun invalidateCells() {
|
||||
|
||||
Reference in New Issue
Block a user