From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kevin Rodgers Newsgroups: gmane.emacs.help Subject: Re: Removing faces when yanking to comint Date: Mon, 31 Jan 2011 15:18:10 -0700 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1296513023 27932 80.91.229.12 (31 Jan 2011 22:30:23 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 31 Jan 2011 22:30:23 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jan 31 23:30:18 2011 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.69) (envelope-from ) id 1Pk2GF-00011N-Tf for geh-help-gnu-emacs@m.gmane.org; Mon, 31 Jan 2011 23:30:16 +0100 Original-Received: from localhost ([127.0.0.1]:46988 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pk24w-0002nN-Ct for geh-help-gnu-emacs@m.gmane.org; Mon, 31 Jan 2011 17:18:34 -0500 Original-Received: from [140.186.70.92] (port=56807 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pk24T-0002mn-6H for help-gnu-emacs@gnu.org; Mon, 31 Jan 2011 17:18:06 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pk24O-0001bW-Ah for help-gnu-emacs@gnu.org; Mon, 31 Jan 2011 17:18:02 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]:58996) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pk24O-0001bM-3z for help-gnu-emacs@gnu.org; Mon, 31 Jan 2011 17:18:00 -0500 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Pk24N-0002zA-9J for help-gnu-emacs@gnu.org; Mon, 31 Jan 2011 23:17:59 +0100 Original-Received: from c-24-8-96-241.hsd1.co.comcast.net ([24.8.96.241]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 31 Jan 2011 23:17:59 +0100 Original-Received: from kevin.d.rodgers by c-24-8-96-241.hsd1.co.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 31 Jan 2011 23:17:59 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 21 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: c-24-8-96-241.hsd1.co.comcast.net User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4; en-US; rv:1.9.2.13) Gecko/20101207 Thunderbird/3.1.7 In-Reply-To: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 80.91.229.12 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:78888 Archived-At: On 1/30/11 2:40 PM, Earl Wagner wrote: > Hi all, > > I often copy and yank lines from other buffers into the shell (running > in shell-mode, extended from comint-mode I think). These lines often > have face attributes such as specific colors for comments, strings, > etc. The problem is that they preserve these colors when run as > commands. Then, every time I retrieve and re-run the comint-input > command, it retains its original face. > > Is there anyway to strip the face attributes from text yanked in the > shell (comint-mode)? How about: (add-hook 'shell-mode-hook (lambda () (set (make-local-variable 'yank-excluded-properties) t))) -- Kevin Rodgers Denver, Colorado, USA