Do not record run-buffer commands to IPython history

This commit is contained in:
Takafumi Arakaki 2012-11-03 22:12:17 +01:00
parent 5a0605f586
commit 40f9bf0d2e

View file

@ -238,7 +238,7 @@ Variable `ein:connect-run-command' sets the default command."
(cmd (format "%s %s" command it)))
(if (ein:maybe-save-buffer ein:connect-save-before-run)
(progn
(ein:shared-output-eval-string cmd)
(ein:shared-output-eval-string cmd nil nil nil :silent t)
(ein:connect-execute-autoexec-cells)
(ein:log 'info "Command sent to the kernel: %s" cmd))
(ein:log 'info "Buffer must be saved before %%run.")))