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.
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
rem
> ben lamothe writes:
> I've been able to implement the functionality I wanted using a
> buffer-local variable in an org-mode hook:
>>
>> (defun bl/completion-use-ido () "Set the current buffer's
>> completing read engine to IDO." (setq-local
>> completing-read-funct
Dear Ben,
> ben lamothe writes:
> I've been able to implement the functionality I wanted using a
> buffer-local variable in an org-mode hook:
>>
>> (defun bl/completion-use-ido () "Set the current buffer's
>> completing read engine to IDO." (setq-local
>> completing
I've been able to implement the functionality I wanted using a buffer-local
variable in an org-mode hook:
>
> (defun bl/completion-use-ido ()
> "Set the current buffer's completing read engine to IDO."
> (setq-local completing-read-function #'ido-completing-read))
(add-hook 'org-mode-hook 'bl/