From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vitalie Spinu Subject: Refile is not using IDO Date: Tue, 02 Feb 2016 11:58:26 +0100 Message-ID: <87fuxbe5v1.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59630) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aQYfY-0002Uc-Ap for emacs-orgmode@gnu.org; Tue, 02 Feb 2016 05:58:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aQYfU-0005M9-Av for emacs-orgmode@gnu.org; Tue, 02 Feb 2016 05:58:48 -0500 Received: from plane.gmane.org ([80.91.229.3]:44230) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aQYfU-0005M3-30 for emacs-orgmode@gnu.org; Tue, 02 Feb 2016 05:58:44 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1aQYfK-0005eV-Gt for emacs-orgmode@gnu.org; Tue, 02 Feb 2016 11:58:34 +0100 Received: from 143.176.214.220 ([143.176.214.220]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 02 Feb 2016 11:58:34 +0100 Received: from spinuvit by 143.176.214.220 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 02 Feb 2016 11:58:34 +0100 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Hi, I cannot get IDO working with refile anymore. The following change seem to be relevant: --=-=-= Content-Type: text/x-diff Content-Disposition: inline @@ -12008,12 +11980,11 @@ this is used for the GOTO interface." (unless org-refile-target-table (user-error "No refile targets")) (let* ((cbuf (current-buffer)) - (partial-completion-mode nil) (cfn (buffer-file-name (buffer-base-buffer cbuf))) (cfunc (if (and org-refile-use-outline-path org-outline-path-complete-in-steps) - 'org-olpath-completing-read - 'org-icompleting-read)) + #'org-olpath-completing-read + #'completing-read)) (extra (if org-refile-use-outline-path "/" "")) (cbnex (concat (buffer-name) extra)) (filename (and cfn (expand-file-name cfn))) --=-=-= Content-Type: text/plain And presumably obsoleted ido completion. I don't see anything mentioned in org-completion-use-ido, tough. How do I activate ido with refile now? Thanks, Vitalie --=-=-=--