From mboxrd@z Thu Jan 1 00:00:00 1970 From: Colin Baxter Subject: Re: Recovering org-completion-use-ido functionality Date: Tue, 04 Sep 2018 16:20:12 +0100 Message-ID: <87y3ch47df.fsf@yandex.com> References: <877ek2lh9x.fsf@yandex.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43736) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fxD7s-0007XS-S0 for emacs-orgmode@gnu.org; Tue, 04 Sep 2018 11:20:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fxD7s-0003xD-5R for emacs-orgmode@gnu.org; Tue, 04 Sep 2018 11:20:20 -0400 Received: from forward101j.mail.yandex.net ([2a02:6b8:0:801:2::101]:43799) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fxD7r-0003ux-Og for emacs-orgmode@gnu.org; Tue, 04 Sep 2018 11:20:20 -0400 In-Reply-To: (ben lamothe's message of "Tue, 4 Sep 2018 08:09:35 -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: ben lamothe Cc: emacs-orgmode@gnu.org Dear Ben >>>>> ben lamothe writes: > Thanks for the suggestion. I did try out > `ido-completing-read-plus`, but it's too aggressive for me. It > tries to enable ido *everywhere*, including the interface for > `M-x`. I just want to enable it for org-mode specific > completions. Basically, I want replicate exactly the functionality > that was removed with the `org-completion-use-ido` option. > Incidentally, the buffer-local variable is also too > aggressive. Now, when I try to enter a command with `M-x`, that > interface tries to use IDO for completing reads, and IDO can't > handle it so it fails. That means I'm back at the drawing board, > and my previous solution doesn't actually work for me. > Does anyone know how I replicate the functionality that was > removed with `org-completion-use-ido`? Sorry to hear of your ido-completing-read-plus experience. The only other suggestion I have is to use icomplete, which predates ido. Emacs has it installed so all you need do is (require 'icomplete) (icomplete-mode 1) It might be worth a try. Best wishes,