I am using jupyter-notebooks for python coding. Is there a way to wrap text/code in a jupyter notebook code cell?
Picture provided below.
By wrap
In addition to Dan's answer, you can apply line wrapping for all cells (code or markdown) by specifying the top object as Cell. Adding the code below to your ~/.jupyter/nbconfig/notebook.json
{
"Cell": {
"cm_config": {
"lineWrapping": true
}
}
}
Ex: This is my cell config
{
"Cell": {
"cm_config": {
"lineNumbers": false,
"lineWrapping": true
}
}
}