move variable declarations to the right place

This commit is contained in:
Valentin Boettcher 2024-09-15 12:31:05 -04:00
parent e2ed9db0d4
commit bab69eb5ce
No known key found for this signature in database
GPG key ID: E034E12B7AF56ACE

View file

@ -116,6 +116,13 @@ If in doubt, set this to :python.")
:type 'number
:group 'py-vterm-interaction-repl)
(defvar-local py-vterm-interaction-paste-with-return t
"Whether to send a return key after pasting a string to the Python REPL.")
(defvar-local py-vterm-interaction-paste-with-clear t
"Whether to clear the line before pasting a string to the Python REPL.")
(defun py-vterm-interaction-repl-buffer-name (&optional session-name)
"Return a Python REPL buffer name whose session name is SESSION-NAME.
If SESSION-NAME is not given, the default session name `main' is assumed."
@ -400,12 +407,6 @@ inferior Python process and the current active environment."
:type 'hook
:group 'py-vterm-interaction)
(defvar-local py-vterm-interaction-paste-with-return t
"Whether to send a return key after pasting a string to the Python REPL.")
(defvar-local py-vterm-interaction-paste-with-clear t
"Whether to clear the line before pasting a string to the Python REPL.")
(defvar-local py-vterm-interaction-fellow-repl-buffer nil)
(defvar-local py-vterm-interaction-session nil)
(defvar-local py-vterm-interaction-context nil)