I’m looking for a python editor extension:
- support code folding and collapse
- show indention tree
- provide lsp
any jupyterlab extension suggested?
I’m looking for a python editor extension:
any jupyterlab extension suggested?
Maybe vscode with jupyter extension?
The folding is available by CodeMirror, which can be modified via the Advanced Settings Editor > Text Editor, and might get you closer to what you’re looking for:
{
"editorConfig": {
"codeFolding": true
}
}
I don’t know of a pithy way to get indentation characters to show in codemirror, but there might be something out there that could be wrapped into…
As for LSP-in-lab: there’s jupyterlab-lsp which knows how to work with python-lsp-server. There’s also a longer discussion.