From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Matthias Meulien Newsgroups: gmane.emacs.help Subject: Re: Inject some eshell features into shell? Date: 22 Oct 2003 12:55:10 +0200 Organization: ...!#$@~? Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <86fzhuqome.fsf@slowfox.dyndns.org> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1066820669 17818 80.91.224.253 (22 Oct 2003 11:04:29 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 22 Oct 2003 11:04:29 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Oct 22 13:04:27 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1ACGmx-0006f0-00 for ; Wed, 22 Oct 2003 13:04:27 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1ACGmr-0004WU-2P for geh-help-gnu-emacs@m.gmane.org; Wed, 22 Oct 2003 07:04:21 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!newsmi-us.news.garr.it!NewsITBone-GARR!news.mailgate.org!newsfeed.stueberl.de!teaser.fr!usenet-fr.net!proxad.net!feeder2-1.proxad.net!news1-2.free.fr!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2.93 Original-Lines: 15 Original-NNTP-Posting-Date: 22 Oct 2003 12:50:39 MEST Original-NNTP-Posting-Host: 62.147.136.209 Original-X-Trace: 1066819839 news1-2.free.fr 238 62.147.136.209:33077 Original-X-Complaints-To: abuse@proxad.net Original-Xref: shelby.stanford.edu gnu.emacs.help:117524 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:13455 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:13455 Kai Grossjohann wrote: > (...) (Another feature I use a lot is the completion, but I think > marrying pcomplete and shell-mode isn't going to be difficult.) In order pcomplete to handle filenames with spaces, you will need the following. (add-hook 'shell-mode-hook '(lambda () (pcomplete-shell-setup) (setq pcomplete-arg-quote-list comint-file-name-quote-list))) -- Matthias