From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: drspotter@gmail.com Newsgroups: gmane.emacs.help Subject: Re: Helm and Winner Mode don't play nice Date: Wed, 1 Oct 2014 00:36:44 -0700 (PDT) Message-ID: References: <87r3zaeyh4.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1412170382 25083 80.91.229.3 (1 Oct 2014 13:33:02 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 1 Oct 2014 13:33:02 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Oct 01 15:32:56 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XZK1W-00079v-Oc for geh-help-gnu-emacs@m.gmane.org; Wed, 01 Oct 2014 15:32:54 +0200 Original-Received: from localhost ([::1]:55456 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XZK1W-0004BN-8c for geh-help-gnu-emacs@m.gmane.org; Wed, 01 Oct 2014 09:32:54 -0400 X-Received: by 10.68.233.6 with SMTP id ts6mr41350145pbc.3.1412149004358; Wed, 01 Oct 2014 00:36:44 -0700 (PDT) X-Received: by 10.140.20.246 with SMTP id 109mr507102qgj.0.1412149004299; Wed, 01 Oct 2014 00:36:44 -0700 (PDT) Original-Path: usenet.stanford.edu!h18no33555igc.0!news-out.google.com!i10ni53qaf.0!nntp.google.com!s7no120190qap.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=80.177.102.168; posting-account=tJdijwoAAAAT352xZswAlQUlJfb7rmfw Original-NNTP-Posting-Host: 80.177.102.168 User-Agent: G2/1.0 Injection-Date: Wed, 01 Oct 2014 07:36:44 +0000 Original-Xref: usenet.stanford.edu gnu.emacs.help:207920 X-Mailman-Approved-At: Wed, 01 Oct 2014 09:32:41 -0400 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 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 Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:100204 Archived-At: On Thursday, 18 September 2014 09:16:51 UTC+1, Michael Heerdegen wrote: > ... > Not really. winner has `winner-boring-buffers', but since helm buffers > can have several different names, one would have to specify a regexp, > which is not possible with winner. > ... For what it's worth, I've made it good enough for me with the following boring buffer definitions: (add-to-list 'winner-boring-buffers "*helm M-x*") (add-to-list 'winner-boring-buffers "*helm mini*") (add-to-list 'winner-boring-buffers "*Helm Completions*") (add-to-list 'winner-boring-buffers "*Helm Find Files*") (add-to-list 'winner-boring-buffers "*helm mu*") (add-to-list 'winner-boring-buffers "*helm mu contacts*") (add-to-list 'winner-boring-buffers "*helm-mode-describe-variable*") (add-to-list 'winner-boring-buffers "*helm-mode-describe-function*") Stuart