From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Masatake YAMATO Newsgroups: gmane.emacs.devel Subject: Re: Eldoc mode Date: Wed, 08 Feb 2006 13:30:48 +0900 (JST) Message-ID: <20060208.133048.156717595.jet@gyve.org> References: <20060207.053434.226794388.jet@gyve.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1139373119 10160 80.91.229.2 (8 Feb 2006 04:31:59 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 8 Feb 2006 04:31:59 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Feb 08 05:31:53 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1F6gzf-0008AA-OC for ged-emacs-devel@m.gmane.org; Wed, 08 Feb 2006 05:31:52 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F6gzf-0003wJ-6l for ged-emacs-devel@m.gmane.org; Tue, 07 Feb 2006 23:31:51 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1F6gz7-0003sk-2g for emacs-devel@gnu.org; Tue, 07 Feb 2006 23:31:17 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1F6gz5-0003rz-61 for emacs-devel@gnu.org; Tue, 07 Feb 2006 23:31:16 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F6gz5-0003ru-1U for emacs-devel@gnu.org; Tue, 07 Feb 2006 23:31:15 -0500 Original-Received: from [210.130.136.40] (helo=r-maa.spacetown.ne.jp) by monty-python.gnu.org with esmtp (Exim 4.52) id 1F6h20-00030q-Hv; Tue, 07 Feb 2006 23:34:17 -0500 Original-Received: from localhost (h219-110-075-252.catv01.itscom.jp [219.110.75.252]) by r-maa.spacetown.ne.jp (8.11.6) with ESMTP id k184Unx19804; Wed, 8 Feb 2006 13:30:51 +0900 (JST) Original-To: rms@gnu.org In-Reply-To: X-Mailer: Mew version 4.2.53 on Emacs 22.0.51 / Mule 5.0 (SAKAKI) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:50184 Archived-At: > > What does Eldoc do in Eshell? Does it give documentation > > on shell commands? If so, could it easily work in sh-script mode > > and in the Shell buffer too? > > I don't know well about this. Maybe it gives documentation on elisp > command. > > Eshell implements a shell within Emacs. Yes. > Its commands seem to be shell commands, not Emacs Lisp. No. I don't use eshell. However, AFAIK, Eshell accepts both shell command line and Emacs lisp code. Here is the example: ---------------------------------------------------------------------------------------- Welcome to the Emacs shell ~/Mail/inbox $ cd /tmp /tmp $ ls 9Komc1 index.sjis.txt E jet11338agW E1 jet15672diB ... /tmp $ (car (list 1 2 3)) 1 /tmp $ ----------------------------------------------------------------------------------------