From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Hansen Newsgroups: gmane.emacs.help Subject: Re: I knew&forgot: .el allowing eg more, less (vi? top?) in *shell* Date: Thu, 17 Apr 2008 22:53:36 +0200 Organization: disorganized Message-ID: <87bq48gq3z.fsf@localhorst.mine.nu> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1208467276 31793 80.91.229.12 (17 Apr 2008 21:21:16 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 17 Apr 2008 21:21:16 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Apr 17 23:21:45 2008 connect(): Connection refused Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JmbMi-0003uF-Iy for geh-help-gnu-emacs@m.gmane.org; Thu, 17 Apr 2008 23:10:03 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JmbM0-0005hp-5l for geh-help-gnu-emacs@m.gmane.org; Thu, 17 Apr 2008 17:09:12 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JmbLk-0005hk-FQ for help-gnu-emacs@gnu.org; Thu, 17 Apr 2008 17:08:56 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JmbLe-0005gr-UJ for help-gnu-emacs@gnu.org; Thu, 17 Apr 2008 17:08:56 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JmbLe-0005go-Oq for help-gnu-emacs@gnu.org; Thu, 17 Apr 2008 17:08:50 -0400 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JmbLb-00068N-S9 for help-gnu-emacs@gnu.org; Thu, 17 Apr 2008 17:08:50 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JmbL6-000562-Tc for help-gnu-emacs@gnu.org; Thu, 17 Apr 2008 21:08:17 +0000 Original-Received: from e178009139.adsl.alicedsl.de ([85.178.9.139]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 17 Apr 2008 21:08:16 +0000 Original-Received: from david.hansen by e178009139.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 17 Apr 2008 21:08:16 +0000 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: help-gnu-emacs@gnu.org Original-Lines: 18 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: e178009139.adsl.alicedsl.de Mail-Copies-To: nobody User-Agent: Gnus/5.110009 (No Gnus v0.9) Emacs/23.0.60 (gnu/linux) Cancel-Lock: sha1:edzFZqGQ+0/+FgOGRVggfnxCTC8= X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:53362 Archived-At: On 17 Apr 2008 09:48:15 -0400 David Combs wrote: > 1: What's the name of that .../lisp/xxx.el that allows you > to run eg more, less, and other cursor-jumping programs > within *shell*? How about viewfile () { emacsclient -e "(view-file \"$1\")" } alias less=viewfile in your .bashrc? Don't forget to (server-start). David