mirror of
https://github.com/vale981/py-vterm-interaction.el
synced 2025-03-04 17:41:40 -05:00
Remove the code to reuse the REPL or script buffer in another frame
- Bump the version to 0.21
This commit is contained in:
parent
738b9eb50b
commit
a3ab6cef6c
1 changed files with 3 additions and 9 deletions
|
@ -7,7 +7,7 @@
|
|||
;; Created: March 11, 2020
|
||||
;; URL: https://github.com/shg/julia-vterm.el
|
||||
;; Package-Requires: ((emacs "25.1") (vterm "0.0.1"))
|
||||
;; Version: 0.20
|
||||
;; Version: 0.21
|
||||
;; Keywords: languages, julia
|
||||
|
||||
;; This file is not part of GNU Emacs.
|
||||
|
@ -142,10 +142,7 @@ If there's already an alive REPL buffer for the session, it will be opened."
|
|||
(if script-buffer
|
||||
(with-current-buffer script-buffer
|
||||
(setq julia-vterm-fellow-repl-buffer repl-buffer)
|
||||
(let ((display-buffer-alist '((".*"
|
||||
(display-buffer-reuse-window)
|
||||
(reusable-frames . visible)))))
|
||||
(switch-to-buffer-other-window script-buffer))))))
|
||||
(switch-to-buffer-other-window script-buffer)))))
|
||||
|
||||
(defun julia-vterm-repl-clear-buffer ()
|
||||
"Clear the content of the Julia REPL buffer."
|
||||
|
@ -249,10 +246,7 @@ With prefix ARG, prompt for session name."
|
|||
(setq julia-vterm-fellow-repl-buffer repl-buffer)
|
||||
(with-current-buffer repl-buffer
|
||||
(setq julia-vterm-repl-script-buffer script-buffer)
|
||||
(let ((display-buffer-alist '((".*"
|
||||
(display-buffer-reuse-window display-buffer-reuse-mode-window)
|
||||
(reusable-frames . visible)))))
|
||||
(switch-to-buffer-other-window repl-buffer)))))
|
||||
(switch-to-buffer-other-window repl-buffer))))
|
||||
|
||||
(defun julia-vterm-send-return-key ()
|
||||
"Send a return key to the Julia REPL."
|
||||
|
|
Loading…
Add table
Reference in a new issue