From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Shug Boabby" Newsgroups: gmane.emacs.help Subject: Re: bs-dont-show-regexp being ignored Date: 23 Oct 2005 14:52:27 -0700 Organization: http://groups.google.com Message-ID: <1130104347.173032.82880@z14g2000cwz.googlegroups.com> References: <1129909005.214456.279470@f14g2000cwb.googlegroups.com> <43590c97$0$41149$14726298@news.sunsite.dk> <1129909643.635807.219390@g43g2000cwa.googlegroups.com> <43591351$0$41149$14726298@news.sunsite.dk> <1129911497.512515.180850@f14g2000cwb.googlegroups.com> <1129914894.293122.204350@g44g2000cwa.googlegroups.com> <43592962$0$41140$14726298@news.sunsite.dk> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: sea.gmane.org 1130104573 5475 80.91.229.2 (23 Oct 2005 21:56:13 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 23 Oct 2005 21:56:13 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Oct 23 23:56:12 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1ETnoD-0005N6-U3 for geh-help-gnu-emacs@m.gmane.org; Sun, 23 Oct 2005 23:55:18 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ETnoD-0003l3-Bs for geh-help-gnu-emacs@m.gmane.org; Sun, 23 Oct 2005 17:55:17 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!z14g2000cwz.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 15 Original-NNTP-Posting-Host: 82.41.24.222 Original-X-Trace: posting.google.com 1130104352 22262 127.0.0.1 (23 Oct 2005 21:52:32 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Sun, 23 Oct 2005 21:52:32 +0000 (UTC) In-Reply-To: <43592962$0$41140$14726298@news.sunsite.dk> User-Agent: G2/0.2 X-HTTP-UserAgent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/412.7 (KHTML, like Gecko) Safari/412.5,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: z14g2000cwz.googlegroups.com; posting-host=82.41.24.222; posting-account=jQz-EQ0AAABiniXWq8YyRVQ60t_LIYwt Original-Xref: shelby.stanford.edu gnu.emacs.help:134916 Original-To: help-gnu-emacs@gnu.org 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:30503 Archived-At: and for anyone who cares to see the conclusion of this thread: (add-to-list 'bs-configurations ; Create a new buffer list config '("shug" "\\*scratch\\*\\|\\*Python\\*" nil ; show scratch "_region_\\.tex" ; don't show _region_.tex files bs-visits-non-file ; only show files bs--sort-by-name)) ; sort the buffer list by name (setq bs-default-configuration "shug") (global-set-key [(control b)] 'bs-show) (global-set-key [(control x) (left)] 'bs-cycle-previous) (global-set-key [(control x) (right)] 'bs-cycle-next) (global-set-key [(control x) (control b)] 'electric-buffer-list)