We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d96c328 commit 9808d2cCopy full SHA for 9808d2c
extensions/lisp-mode/internal-package.lisp
@@ -92,6 +92,7 @@
92
:lisp-switch-to-repl-buffer
93
:write-string-to-repl
94
:copy-down-to-repl
95
+ :send-string-to-listener
96
;; apropos-mode.lisp
97
:apropos-headline-attribute
98
:*lisp-apropos-mode-keymap*
extensions/lisp-mode/repl.lisp
@@ -262,6 +262,12 @@
262
string
263
(string #\newline))))))
264
265
+(defun send-string-to-listener (string)
266
+ (lisp-switch-to-repl-buffer)
267
+ (buffer-end (current-point))
268
+ (insert-string (current-point) string)
269
+ (lem/listener-mode:listener-return))
270
+
271
(define-command start-lisp-repl (&optional (use-this-window nil)) ("P")
272
(check-connection)
273
(flet ((switch (buffer split-window-p)
0 commit comments