Merge pull request #6258 from patricktokeeffe/patch-1

Update custom.js
This commit is contained in:
Matthias Bussonnier 2014-09-03 10:53:24 -07:00
commit 9e8cf39956

View File

@ -11,6 +11,17 @@
* It will be executed by the ipython notebook at load time.
*
* Same thing with `profile/static/custom/custom.css` to inject custom css into the notebook.
*
* Classes and functions are available at load time and may be accessed plainly:
*
* IPython.Cell.options_default.cm_config.extraKeys['Home'] = 'goLineLeft';
* IPython.Cell.options_default.cm_config.extraKeys['End'] = 'goLineRight';
*
* Instances are created later however and must be accessed using events:
*
* $([IPython.events]).on("app_initialized.NotebookApp", function () {
* IPython.keyboard_manager....
* });
*
* __Example 1:__
*