mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 01:21:38 -05:00
Document ein:autoexec-mode
This commit is contained in:
parent
66ea6f6d10
commit
c6adb4ff56
3 changed files with 7 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
|||
(require 'ein-mumamo)
|
||||
(require 'ein-ac)
|
||||
(require 'ein-connect)
|
||||
(require 'ein-autoexec)
|
||||
|
||||
;; Load `wid-edit'. Otherwise the following error will be raised:
|
||||
;; Symbol's function definition is void: widget-button-press
|
||||
|
|
|
@ -220,6 +220,7 @@ The following keybinds are available in notebook buffers.
|
|||
.. el:function:: ein:notebook-delete-cell-command
|
||||
.. el:function:: ein:notebook-rename-to-scratch-command
|
||||
.. el:function:: ein:notebook-kill-all-buffers
|
||||
.. el:function:: ein:autoexec-mode
|
||||
|
||||
Connected buffer
|
||||
^^^^^^^^^^^^^^^^
|
||||
|
@ -304,6 +305,7 @@ Notebook
|
|||
.. el:variable:: ein:cell-traceback-level
|
||||
.. el:variable:: ein:cell-max-num-outputs
|
||||
.. el:variable:: ein:scratch-notebook-name-template
|
||||
.. el:variable:: ein:autoexec-delay
|
||||
|
||||
Connect
|
||||
^^^^^^^
|
||||
|
@ -474,6 +476,7 @@ v0.1.1
|
|||
* Add :el:symbol:`ein:pytools-pandas-to-ses`.
|
||||
* Add Imenu support.
|
||||
* Better heading cell faces.
|
||||
* Add :el:symbol:`ein:autoexec-mode`
|
||||
|
||||
|
||||
v0.1
|
||||
|
|
|
@ -54,7 +54,9 @@ If the previous execution timer is not fired yet, cancel the timer."
|
|||
(ein:autoexec-execute-cell cell))))
|
||||
|
||||
(define-minor-mode ein:autoexec-mode
|
||||
"Automatic cell execution minor mode."
|
||||
"Automatic cell execution minor mode.
|
||||
Code cell at point will be automatically executed after any
|
||||
change in its input area."
|
||||
:lighter " ein:au"
|
||||
:group 'ein
|
||||
(if ein:autoexec-mode
|
||||
|
|
Loading…
Add table
Reference in a new issue