Hey you #jupyterlab and #jupyternotebook experts out there, is there Cell Metadata property to make it so a markdown cell can't be switched to code/edit mode, but will stay rendered? I've found settings to lock it from being editable so far 👍 but want to keep it locked rendered
@AstrobioMike not exactly, but using `showEditorForReadOnlyMarkdown` setting you can prevent unrendering non editable cells application-wide in JupyterLab. Last week someone suggested adding per notebook setting on SO ( https://stackoverflow.com/questions/75227302/preventing-markdown-cells-from-un-rendering-jupyter-showeditorforreadonlymark ) but there is no issue in JupyterLab GitHub yet. Would you mind opening an issue?
Preventing markdown cells from un-rendering (Jupyter): showEditorForReadOnlyMarkdow

following this post and the issues tab regarding this problem I have found that to make a cell that is set to "editable":false not be able to be un-rendered I need to set

Stack Overflow

@krassowski oh great! Looks like it should work perfectly for me, thanks! And yea will do 👍

I hit another thing too, wondering if we can disable auto-completion/suggestions because I want to introduce shell tab-completion (in a notebook with bash kernel), but tab-ing is bringing up all kinds of things. I put a post here on the jupyter discourse: https://discourse.jupyter.org/t/disabling-tab-auto-complete-suggestions-in-jupyter-notebook-bash-kernel/17819

Thanks for your help!

Disabling tab auto-complete suggestions in jupyter notebook bash kernel

Hiya 🙂 I’m trying to put one of my unix intro lessons into a jupyter notebook. I’m using a bash kernel, but one things i’ve hit is that when i try to use tab-completion, it does show the files and directories of the current working directory, but it also shows other things that are unrelated, e.g. in the attached image, I want only what’s tab-completed-suggested from bash (which here should just be “experiment”, but the others show up. Is there a way i can disable these auto-com...

Jupyter Community Forum