Maybe I'm just missing something, but I could not find a functionality like this
for instacne
(defun ale/nix-send-buffer-to-repl (&optional arg)
(interactive "P")
(let ((contents (buffer-string)))
(save-excursion
(nix-repl-show)
(when arg
(insert (format "%s = "
(read-string "Variable to store expression: "))))
(insert contents)
(comint-send-input))))
is there something planned to send input and so on to the repl?
Maybe I'm just missing something, but I could not find a functionality like this
for instacne
is there something planned to send input and so on to the repl?