From: Michael Albinus via "Bug reports for GNU Emacs, the Swiss army knife of text editors" <bug-gnu-emacs@gnu.org>
To: Dmitry Gutov <dmitry@gutov.dev>
Cc: 71049@debbugs.gnu.org
Subject: bug#71049: async-shell-command ends with "Process *Async Shell Command* finished" when remote "direct-async-process"
Date: Fri, 24 May 2024 16:06:13 +0200 [thread overview]
Message-ID: <87ttinfgoa.fsf@gmx.de> (raw)
In-Reply-To: <8734q7h35d.fsf@gmx.de> (Michael Albinus's message of "Fri, 24 May 2024 13:15:26 +0200")
[-- Attachment #1: Type: text/plain, Size: 729 bytes --]
Michael Albinus <michael.albinus@gmx.de> writes:
Hi Dmitry,
>> The command can be simple, like 'ls' or 'echo 123'. I also see this
>> added to *Messages*:
>>
>> Tramp: Inserting
>> ‘/ssh:dgutov@fencepost.gnu.org:/home/d/dgutov/.tramp_history’...done
>
> According to reading .tramp_history: this is performed in
> comint-read-input-ring, called from shell-mode. comint-input-ring-file-name
> is set in shell-mode, I don't see a trivial solution to suppress
> this. Likely, we must extend shell-mode for this case.
We could add a user option remote-file-name-inhibit-input-ring which
suppresses reading the remote histfile, when set to non-nil. See
appended patch.
Eli?
Best regards, Michael.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 1478 bytes --]
diff --git a/lisp/comint.el b/lisp/comint.el
index 3804932e01c..2415435546e 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -249,6 +249,11 @@ comint-input-ignoredups
:type 'boolean
:group 'comint)
+(defcustom remote-file-name-inhibit-input-ring nil
+ "If non-nil, inhibit `comint-input-ring'."
+ :type 'boolean
+ :version "30.1")
+
(defcustom comint-input-ring-file-name nil
"If non-nil, name of the file to read/write input history.
See also `comint-read-input-ring' and `comint-write-input-ring'.
diff --git a/lisp/shell.el b/lisp/shell.el
index e6b315ee5c0..1ed04c46cf9 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -726,9 +726,13 @@ shell-mode
(hsize (getenv "HISTSIZE"))
(hfile (getenv "HISTFILE")))
(when remote
- ;; `shell-snarf-envar' does not work trustworthy.
- (setq hsize (shell-command-to-string "echo -n $HISTSIZE")
- hfile (shell-command-to-string "echo -n $HISTFILE")))
+ (if remote-file-name-inhibit-input-ring
+ (setq remote nil
+ hsize nil
+ hfile nil)
+ ;; `shell-snarf-envar' does not work trustworthy.
+ (setq hsize (shell-command-to-string "echo -n $HISTSIZE")
+ hfile (shell-command-to-string "echo -n $HISTFILE"))))
(and (string-equal hfile "") (setq hfile nil))
(and (stringp hsize)
(integerp (setq hsize (string-to-number hsize)))
next prev parent reply other threads:[~2024-05-24 14:06 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-19 0:19 bug#71049: async-shell-command ends with "Process *Async Shell Command* finished" when remote "direct-async-process" Dmitry Gutov
2024-05-19 6:17 ` Eli Zaretskii
2024-05-19 12:40 ` Dmitry Gutov
2024-05-24 11:15 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-24 14:06 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors [this message]
2024-05-24 14:50 ` Eli Zaretskii
2024-05-24 16:39 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-24 18:55 ` Eli Zaretskii
2024-05-24 19:20 ` Dmitry Gutov
2024-05-25 10:49 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-25 13:54 ` Dmitry Gutov
2024-05-25 15:51 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-25 16:17 ` Dmitry Gutov
2024-05-25 17:00 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-25 17:31 ` Dmitry Gutov
2024-05-25 17:44 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-26 14:18 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-29 1:59 ` Dmitry Gutov
2024-05-29 7:41 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-29 11:55 ` Dmitry Gutov
2024-05-29 15:19 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-29 11:53 ` Eli Zaretskii
2024-05-29 11:57 ` Dmitry Gutov
2024-05-29 12:46 ` Eli Zaretskii
2024-05-29 17:26 ` Dmitry Gutov
2024-05-29 17:42 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-29 18:15 ` Dmitry Gutov
2024-05-29 18:38 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-29 20:40 ` Dmitry Gutov
2024-05-30 8:49 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-31 0:24 ` Dmitry Gutov
2024-05-31 5:53 ` Eli Zaretskii
2024-05-31 16:24 ` Dmitry Gutov
2024-05-31 18:05 ` Eli Zaretskii
2024-06-01 1:21 ` Dmitry Gutov
2024-06-01 6:07 ` Eli Zaretskii
2024-06-01 15:33 ` Dmitry Gutov
2024-06-01 15:47 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-06-02 1:39 ` Dmitry Gutov
2024-06-02 8:36 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-06-02 14:10 ` Dmitry Gutov
2024-06-02 14:46 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-06-02 15:01 ` Dmitry Gutov
2024-06-02 17:31 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-31 7:27 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-31 12:13 ` Dmitry Gutov
2024-05-29 18:11 ` Eli Zaretskii
2024-05-25 17:10 ` Eli Zaretskii
2024-05-25 7:23 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-24 17:17 ` Dmitry Gutov
2024-05-24 17:41 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-24 17:50 ` Dmitry Gutov
2024-05-24 18:09 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-25 13:03 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-05-25 14:40 ` Dmitry Gutov
2024-05-25 15:26 ` Michael Albinus via Bug reports for GNU Emacs, the Swiss army knife of text editors
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87ttinfgoa.fsf@gmx.de \
--to=bug-gnu-emacs@gnu.org \
--cc=71049@debbugs.gnu.org \
--cc=dmitry@gutov.dev \
--cc=michael.albinus@gmx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).