Christian Seberino <[email protected]> writes:

> Sorry...excuse my ignorance....are you suggesting there is some list
> of commands in a file
> in the Emacs source that should be modified? If so what is the
> path/file name of that file with
> the list of commands?

That addition (sending the command HGPLAIN=1) was added already in Emacs
25.0.50. If you would use that development version of Emacs, the problem
shall be fixed.

The other proposal Kai has done was to apply this setting in your
.profile conditionally. Since we know that Emacs/Tramp set the TERM
variable to "dumb", you could do something like this in your .pofile:

[ $TERM = "dumb" ] && export HGPLAIN=1

A third alternative would be to add this setting to the environment
variables to be set by Tramp. Add this to your .emacs:

(require 'tramp)
(add-to-list 'tramp-remote-process-environment "HGPLAIN=1")

Best regards, Michael.

_______________________________________________
Tramp-devel mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/tramp-devel

Reply via email to