From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Emanuel Berg Newsgroups: gmane.emacs.devel Subject: Re: master 861ac933dd8: Run `man' also on remote systems Date: Wed, 01 Nov 2023 21:13:27 +0100 Message-ID: <87jzr1i654.fsf@dataswamp.org> References: <169885408539.20142.2201339795070761011@vcs2.savannah.gnu.org> <20231101155445.B09E0C0C180@vcs2.savannah.gnu.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="15406"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) To: emacs-devel@gnu.org Cancel-Lock: sha1:U+7bDSgwLi1jUPUIzP0/nGF+VgA= Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Nov 02 06:38:47 2023 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qyQPn-0003pA-75 for ged-emacs-devel@m.gmane-mx.org; Thu, 02 Nov 2023 06:38:47 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qyQOz-0004HV-RK; Thu, 02 Nov 2023 01:37:58 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qyHau-0003id-P1 for emacs-devel@gnu.org; Wed, 01 Nov 2023 16:13:40 -0400 Original-Received: from ciao.gmane.io ([116.202.254.214]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qyHar-0002mu-Kf for emacs-devel@gnu.org; Wed, 01 Nov 2023 16:13:40 -0400 Original-Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1qyHao-0000nr-PA for emacs-devel@gnu.org; Wed, 01 Nov 2023 21:13:34 +0100 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: emacs-devel@gnu.org Mail-Copies-To: never Received-SPF: pass client-ip=116.202.254.214; envelope-from=ged-emacs-devel@m.gmane-mx.org; helo=ciao.gmane.io X-Spam_score_int: -16 X-Spam_score: -1.7 X-Spam_bar: - X-Spam_report: (-1.7 / 5.0 requ) BAYES_00=-1.9, HEADER_FROM_DIFFERENT_DOMAINS=0.249, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=no autolearn_force=no X-Spam_action: no action X-Mailman-Approved-At: Thu, 02 Nov 2023 01:37:56 -0400 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:312105 Archived-At: Eshel Yaron wrote: >> branch: master >> commit 861ac933dd8aed1028edc4b9142400e3702874d5 >> Author: Michael Albinus >> Commit: Michael Albinus >> >> Run `man' also on remote systems > > Thanks for implementing this, I just found myself wishing > `M-x man` would run on the remote host a few days ago. > This works well now! I upgraded just now to GNU Emacs 30.0.50 (build 1, x86_64-pc-linux-gnu, cairo version 1.16.0) of 2023-11-01 [commit 8eb9b82ce58a8323af21f52625a401e19e279a9c] but don't get it to work. After using the below settings and command to get to a file on an OpenBSD system and do, from that buffer, M-x man RET ls RET I get the GNU ls(1) manpage, not the OpenBSD one. Maybe it is supposed to work some other way? ;;; -*- lexical-binding: t -*- ;; ;; this file: ;; https://dataswamp.org/~incal/emacs-init/tramp-incal.el (require 'tramp) (require 'tramp-sh) (setq tramp-histfile-override nil) (add-to-list 'tramp-methods '("sunos-ssh" (tramp-login-program "ssh") (tramp-login-args (("-l" "%u") ("-p" "%p") ("%c") ("-e" "none") ("-t" "-t") ("%h") ("\"/bin/sh -i\"") )) (tramp-async-args (("-q"))) (tramp-remote-shell "/bin/sh") (tramp-remote-shell-login ("-l")) (tramp-remote-shell-args ("-c")) )) ;; OpenBSD system: ;; (find-file "/-:incal@srv.dataswamp.org:public_html/sth/sth.py") (provide 'tramp-incal) -- underground experts united https://dataswamp.org/~incal