Jupyterlab: Autoclose parantheses

Created on 30 May 2018  路  3Comments  路  Source: jupyterlab/jupyterlab

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?

codeeditor resolved-locked Feature Parity Enhancement Question

Most helpful comment

@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
image

All 3 comments

@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
image

I think this issue can be closed.

Thanks @joelostblom

Was this page helpful?
0 / 5 - 0 ratings

Related issues

dhirschfeld picture dhirschfeld  路  3Comments

idoDavid picture idoDavid  路  3Comments

bollwyvl picture bollwyvl  路  3Comments

elgalu picture elgalu  路  3Comments

PhilosopherZ picture PhilosopherZ  路  3Comments