Skip to content

Commit

Permalink
Merge pull request #104 from tpapp/tp/remove-term-suppress-hard-newline
Browse files Browse the repository at this point in the history
don't use obsolete variable
  • Loading branch information
tpapp authored Jan 14, 2021
2 parents 616f271 + 9b16456 commit 0774d3b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion julia-repl.el
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ When PASTE-P, “bracketed paste” mode will be used. When RET-P, terminate wit
(when julia-repl-set-term-escape
(term-set-escape-char ?\C-x)) ; useful for switching windows
(setq-local term-prompt-regexp "^(julia|shell|help\\?|(\\d+\\|debug ))>")
(setq-local term-suppress-hard-newline t) ; reflow text
(when (version< emacs-version "27")
(setq-local term-suppress-hard-newline t)) ; reflow text
(setq-local term-scroll-show-maximum-output t)
;; do I need this?
(setq-local term-scroll-to-bottom-on-output t))
Expand Down

0 comments on commit 0774d3b

Please sign in to comment.