* lisp/ob-ruby.el (org-babel-ruby-initiate-session): Fix multiline
Without a newline at the end, repl sometimes does not interpret the prompt settings correctly.
This commit is contained in:
parent
83411c0d3e
commit
db679cff98
|
@ -192,7 +192,7 @@ then create one. Return the initialized session."
|
||||||
(setq-local comint-prompt-regexp (concat "^" org-babel-ruby-prompt))
|
(setq-local comint-prompt-regexp (concat "^" org-babel-ruby-prompt))
|
||||||
(insert org-babel-ruby-define-prompt ";")
|
(insert org-babel-ruby-define-prompt ";")
|
||||||
(insert "_org_prompt_mode=conf.prompt_mode;conf.prompt_mode=:CUSTOM;")
|
(insert "_org_prompt_mode=conf.prompt_mode;conf.prompt_mode=:CUSTOM;")
|
||||||
(insert "conf.echo=false")
|
(insert "conf.echo=false\n")
|
||||||
(comint-send-input nil t)))
|
(comint-send-input nil t)))
|
||||||
session-buffer)
|
session-buffer)
|
||||||
(sit-for .5)
|
(sit-for .5)
|
||||||
|
|
Loading…
Reference in New Issue