I have been trying to enable line wrapping in ipython notebook. I googled it with no results and i typed ipython notebook --help in a terminal. This gives me a ton of configurat
Most of notebook is powered by Codemirror, the option you search is hence this one problem is we don't have simple way of passing configuration to CodeMirror, so you will have to figure out some javascript un custom.js
to apply the configuration to the right object.
From the top of my head and handwaving :I would say IPython.CodeCell.default_options.cm
les lineWrapping
to true then loop through IPython.notebook.get_cells()
(already instantiated object) grab their editor
attribute and setOption('lineWrapping',true)
.
You can make a JS extension that does it and propose (and take inspiration) here.