From b948a940a4c9d83fbfddb1274061fd2374422bb1 Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Wed, 31 May 2023 17:08:15 -0700 Subject: [PATCH] Fix how I send code to a Project's Terminal --- ha-programming.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ha-programming.org b/ha-programming.org index 4e9247f..bc37452 100644 --- a/ha-programming.org +++ b/ha-programming.org @@ -768,7 +768,7 @@ If I end a command with a =|v=, it sends the compile command to a vterm session ;; (add-to-list 'compile-history full-command) (let ((command (replace-regexp-in-string rx-compile-to-vterm "" full-command))) - (ha-shell-send command project-dir))) + (ha-ssh-send command project-dir))) #+end_src And what about sending the command to Eshell as well?