I am trying to disable autoclosing of parantheses and brackets etc.
In default jupyter notebook this works fine with:
from notebook.services.config import ConfigManager
c = ConfigManager()
c.update('notebook', {"CodeCell": {"cm_config": {"autoCloseBrackets": False}}})
However, it does not work in jupyterlab, any ideas?
@psinger You can turn this off in the settings menu. Go to Settings --> Advanced Settings Editor and add the following in the User Overrides section:
{
"codeCellConfig": {
"autoClosingBrackets": false
}
}
Screenshot

I think this issue can be closed.
Thanks @joelostblom
Most helpful comment
@psinger You can turn this off in the settings menu. Go to
Settings --> Advanced Settings Editorand add the following in theUser Overridessection:Screenshot
