mirror of
https://github.com/vale981/py-vterm-interaction.el
synced 2025-03-04 09:31:40 -05:00
move variable declarations to the right place
This commit is contained in:
parent
e2ed9db0d4
commit
bab69eb5ce
1 changed files with 7 additions and 6 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue