Show More
@@ -12,6 +12,16 b'' | |||
|
12 | 12 | * |
|
13 | 13 | * Same thing with `profile/static/custom/custom.css` to inject custom css into the notebook. |
|
14 | 14 | * |
|
15 | * Classes and functions are available at load time and may be accessed plainly: | |
|
16 | * | |
|
17 | * IPython.Cell.options_default.cm_config.extraKeys = {Home: "goLineLeft", End: "goLineRight"}; | |
|
18 | * | |
|
19 | * Instances are created later however and must be accessed using events: | |
|
20 | * | |
|
21 | * $([IPython.events]).on("app_initialized.NotebookApp", function () { | |
|
22 | * IPython.keyboard_manager.... | |
|
23 | * }); | |
|
24 | * | |
|
15 | 25 | * __Example 1:__ |
|
16 | 26 | * |
|
17 | 27 | * Create a custom button in toolbar that execute `%qtconsole` in kernel |
General Comments 0
You need to be logged in to leave comments.
Login now