Last active
September 17, 2021 19:28
-
-
Save darachm/c44ebe33fdbb538fc019c8a9a54b08bb to your computer and use it in GitHub Desktop.
kill the autobrackets // from https://github.com/jupyter/notebook/issues/2040#issuecomment-394118060
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: var cell = Jupyter.notebook.get_selected_cell(); | |
var config = cell.config; | |
var patch = { | |
CodeCell:{ | |
cm_config:{autoCloseBrackets:{pairs: ""}} | |
} | |
}; | |
config.update(patch); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment