Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a7ed0ca

Browse files
committed
Remove ein:cell-max-num-outputs from document
And disable it (set to nil). Limiting number of output does not work well, when a lot of inputs comes with carriage returns. Probably it is better to limit by number of lines (plus maybe number of images).
1 parent 8f8a946 commit a7ed0ca

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

doc/source/index.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,6 @@ Notebook
314314
.. el:variable:: ein:notebook-console-executable
315315
.. el:variable:: ein:notebook-console-args
316316
.. el:variable:: ein:cell-traceback-level
317-
.. el:variable:: ein:cell-max-num-outputs
318317
.. el:variable:: ein:cell-autoexec-prompt
319318
.. el:variable:: ein:scratch-notebook-name-template
320319
.. el:variable:: ein:iexec-delay
@@ -486,9 +485,6 @@ v0.1.1
486485
* Plain text type output is favored over LaTeX type output
487486
(previous setting was opposite).
488487
* Add :el:symbol:`ein:notebook-rename-to-scratch-command`.
489-
* Introduce :el:symbol:`ein:notebook-show-in-shared-output` command
490-
and :el:symbol:`ein:cell-max-num-outputs` configuration variable to
491-
truncate long output and show it in a separated buffer.
492488
* Add :el:symbol:`ein:pytools-pandas-to-ses`.
493489
* Add Imenu support.
494490
* Better heading cell faces.

lisp/ein-cell.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ using the command `ein:notebook-view-traceback'."
116116
(const :tag "Show all traceback" nil))
117117
:group 'ein)
118118

119-
(defcustom ein:cell-max-num-outputs 5
119+
(defcustom ein:cell-max-num-outputs nil
120120
"Number of maximum outputs to be shown by default.
121121
To view full output, use `ein:notebook-show-in-shared-output'."
122122
:type '(choice (integer :tag "Number of outputs to show" 5)

0 commit comments

Comments
 (0)