From 80ce477055cf50a17dbdb4ae1d81d4c6ae1f2442 Mon Sep 17 00:00:00 2001 From: Akib Azmain Turja Date: Wed, 13 Sep 2023 21:53:13 +0600 Subject: [PATCH] Fix Bash long startup when run from Eshell * eat.el (eat--eshell-handle-uic): Acknowledge when input history file is sent by the shell. --- eat.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eat.el b/eat.el index a53b2fe..316ac36 100644 --- a/eat.el +++ b/eat.el @@ -6827,6 +6827,9 @@ PROGRAM can be a shell command." (let cmd (zero-or-more anything)) string-end) (eat--set-cmd cmd)) + ;; UIC e ; I ; 0 ; ST. + ((rx string-start "e;I;0;" (zero-or-more anything) string-end) + (eat-term-send-string eat--terminal "\e]51;e;I;0\e\\")) ;; Other sequences are ignored. ))