From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: orgalist & variable binding depth Date: Thu, 06 Sep 2018 16:21:22 +0200 Message-ID: <87va7iu2ot.fsf@nicolasgoaziou.fr> References: <87pnxskr6r.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54972) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fxvA2-0007B4-Ep for emacs-orgmode@gnu.org; Thu, 06 Sep 2018 10:21:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fxv9y-0002jf-A5 for emacs-orgmode@gnu.org; Thu, 06 Sep 2018 10:21:30 -0400 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:50645) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fxv9y-0002gt-2v for emacs-orgmode@gnu.org; Thu, 06 Sep 2018 10:21:26 -0400 In-Reply-To: (Matt Price's message of "Wed, 5 Sep 2018 10:46:13 -0400") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Matt Price Cc: jschwab@gmail.com, Org Mode Hello, Matt Price writes: > so, I think there is an infinite loop generated between yas--auto-fill and > orgalist--auto-fill: Yasnippet and Orgalist are somewhat incompatible because Yasnippet is not playing nice with other minor modes. Instead of advising functions, it stores them and installs its modified version. IIRC, I solve a similar issue by first disabling Yasnippet, then enabling Orgalist, and eventually enabling Yasnippet again: (yas-minor-mode -1) (orgalist-mode 1) (yas-minor-mode) Regards, -- Nicolas Goaziou