From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.help Subject: Re: (source) Anything like this exist already? (buffer name intelligence) Date: Fri, 11 Jan 2008 20:48:52 +0100 Message-ID: References: <200801111101.27609.amax@redsymbol.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1200080958 32074 80.91.229.12 (11 Jan 2008 19:49:18 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 11 Jan 2008 19:49:18 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: "Aaron Maxwell" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Jan 11 20:49:39 2008 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 1JDPsm-0005R1-TX for geh-help-gnu-emacs@m.gmane.org; Fri, 11 Jan 2008 20:49:37 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JDPsP-0001F3-7g for geh-help-gnu-emacs@m.gmane.org; Fri, 11 Jan 2008 14:49:13 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JDPs6-0001BD-W3 for help-gnu-emacs@gnu.org; Fri, 11 Jan 2008 14:48:55 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JDPs5-00018n-P2 for help-gnu-emacs@gnu.org; Fri, 11 Jan 2008 14:48:54 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JDPs5-00018h-N5 for help-gnu-emacs@gnu.org; Fri, 11 Jan 2008 14:48:53 -0500 Original-Received: from wa-out-1112.google.com ([209.85.146.178]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JDPs5-0001Yw-8q for help-gnu-emacs@gnu.org; Fri, 11 Jan 2008 14:48:53 -0500 Original-Received: by wa-out-1112.google.com with SMTP id k34so1957628wah.10 for ; Fri, 11 Jan 2008 11:48:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=Z7Rk3I0Xjkwhq+E3H6IPS2mXja1DYcUDjznB2Ymwqvs=; b=ebBavU/dWz1VcDrt4mylp4GNzeSgyKTmj94jKxlzD77sHc7BIy/qZISicGHO/TlpWDJ0Io3VGuKAhfuPvxuSRXpJ+CmJ8ZdIS7Qt3UVwsygMFww44gCGcexeD4a5aJNQGJqst6W9v0pHxGyG7c57zVR2QNh8+syQ5Jk2DrHPoso= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=IpLhEY9oP0etuV0kIKvde5SCoz5XInzzUowEtLAdd0BlqIWqcK+6gR/BOxmME2Ds50ffupr5dmnu0UBa5oQ0Sav+r7YSfl8ltt4Q6PYzUklEZXDyHw/zo9yjq59i7XTNzhqGchN11xT4wSuDGSurBHAsKkWeNNkQljqQnVlOla0= Original-Received: by 10.115.89.1 with SMTP id r1mr4117686wal.8.1200080932386; Fri, 11 Jan 2008 11:48:52 -0800 (PST) Original-Received: by 10.115.72.13 with HTTP; Fri, 11 Jan 2008 11:48:52 -0800 (PST) In-Reply-To: <200801111101.27609.amax@redsymbol.net> Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) 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:50665 Archived-At: On Jan 11, 2008 8:01 PM, Aaron Maxwell wrote: > Here's the defun I refered to in my post a moment ago: > ; Better handle similar buffer names > (defun extend-buffer-name (arg) > "Extend the current buffer's name according to to its full file path. > With prefix arg, extend by N levels. Default is one level." Do you know about uniquify.el? Juanma