From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Martin Lorentzson Newsgroups: gmane.emacs.help Subject: Re: Looking for a package filename expansion in a buffer (ala dabbrev) Date: 05 May 2003 19:53:22 +0200 Organization: Posted via Supernews, http://www.supernews.com Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <87znm1uvot.fsf@localhost.localdomain> References: <2bd747c7.0305050849.497d36e1@posting.google.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1052157961 1232 80.91.224.249 (5 May 2003 18:06:01 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 5 May 2003 18:06:01 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Mon May 05 20:06:00 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19CkCa-0007yp-00 for ; Mon, 05 May 2003 19:56:37 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19CkBL-0006s4-00 for gnu-help-gnu-emacs@m.gmane.org; Mon, 05 May 2003 13:55:19 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!cyclone.bc.net!tdsnet-transit!newspeer.tds.net!sn-xit-02!sn-xit-04!sn-xit-06!sn-post-01!supernews.com!news.supernews.com!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Original-X-Complaints-To: abuse@supernews.com Original-Lines: 12 Original-Xref: shelby.stanford.edu gnu.emacs.help:112796 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:9291 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:9291 bigfaceworm@hotmail.com (bigfaceworm) writes: > I'm just looking for a package that will let me expand filenames > when I'm inside a buffer. The following two lines in your ~/.emacs will place just such a feature on your F5 key: (require 'comint) (global-set-key [f5] #'comint-dynamic-complete-filename) /Martin