Created
July 9, 2015 19:54
-
-
Save jdbrice/8bb83aea740f71ee3c81 to your computer and use it in GitHub Desktop.
IPython3 Notebook wordwrap
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
// Put this inside your custom.js file | |
// works for ipython 3 notebooks | |
$([IPython.events]).on('app_initialized.NotebookApp', function(){ | |
IPython.CodeCell.options_default['cm_config']['lineWrapping'] = true; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment