all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* ido in dired-do-copy/dired-do-rename
@ 2014-04-18  9:14 Julien Cubizolles
  2014-04-18  9:16 ` Igor Sosa Mayor
  0 siblings, 1 reply; 6+ messages in thread
From: Julien Cubizolles @ 2014-04-18  9:14 UTC (permalink / raw)
  To: help-gnu-emacs

Is there a way to use ido-find-file when copying/renaming a file from a
dired buffer ? I have ido-everywhere set to t but the minibuffer always
present the standard find-file display when copying/renaming from dired.

Julien.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: ido in dired-do-copy/dired-do-rename
  2014-04-18  9:14 ido in dired-do-copy/dired-do-rename Julien Cubizolles
@ 2014-04-18  9:16 ` Igor Sosa Mayor
  2014-04-19  9:23   ` Julien Cubizolles
  0 siblings, 1 reply; 6+ messages in thread
From: Igor Sosa Mayor @ 2014-04-18  9:16 UTC (permalink / raw)
  To: help-gnu-emacs

Julien Cubizolles <j.cubizolles@free.fr> writes:

> Is there a way to use ido-find-file when copying/renaming a file from a
> dired buffer ? I have ido-everywhere set to t but the minibuffer always
> present the standard find-file display when copying/renaming from dired.

(put 'dired-do-rename 'ido 'find-file)




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: ido in dired-do-copy/dired-do-rename
  2014-04-18  9:16 ` Igor Sosa Mayor
@ 2014-04-19  9:23   ` Julien Cubizolles
  2014-04-19 11:04     ` Igor Sosa Mayor
  0 siblings, 1 reply; 6+ messages in thread
From: Julien Cubizolles @ 2014-04-19  9:23 UTC (permalink / raw)
  To: Igor Sosa Mayor; +Cc: help-gnu-emacs

Igor Sosa Mayor <joseleopoldo1792@gmail.com> writes:

> Julien Cubizolles <j.cubizolles@free.fr> writes:
>
>> Is there a way to use ido-find-file when copying/renaming a file from a
>> dired buffer ? I have ido-everywhere set to t but the minibuffer always
>> present the standard find-file display when copying/renaming from dired.
>
> (put 'dired-do-rename 'ido 'find-file)

In what order should I load ido and dired, and at what point should I
use your command ?

Right now I have ido loaded first then dired and I tried using your code
before both, after both and in between, and it didn't change the behaviour of dired-do-copy.

Julien.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: ido in dired-do-copy/dired-do-rename
  2014-04-19  9:23   ` Julien Cubizolles
@ 2014-04-19 11:04     ` Igor Sosa Mayor
  2014-04-21 13:04       ` Julien Cubizolles
  0 siblings, 1 reply; 6+ messages in thread
From: Igor Sosa Mayor @ 2014-04-19 11:04 UTC (permalink / raw)
  To: help-gnu-emacs

Julien Cubizolles <j.cubizolles@free.fr> writes:
> Right now I have ido loaded first then dired and I tried using your code
> before both, after both and in between, and it didn't change the behaviour of dired-do-copy.

I load dired, then ido and at the end I have this small tweak. 

In any case, see here:
http://stackoverflow.com/questions/11505878/get-ido-in-dired-buffers

Maybe you could restart emacs and try.

-- 
:: Igor Sosa Mayor     :: joseleopoldo1792@gmail.com ::
:: GnuPG: 0x1C1E2890   :: http://www.gnupg.org/      ::
:: jabberid: rogorido  ::                            ::




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: ido in dired-do-copy/dired-do-rename
  2014-04-19 11:04     ` Igor Sosa Mayor
@ 2014-04-21 13:04       ` Julien Cubizolles
  2014-04-21 13:05         ` Igor Sosa Mayor
  0 siblings, 1 reply; 6+ messages in thread
From: Julien Cubizolles @ 2014-04-21 13:04 UTC (permalink / raw)
  To: Igor Sosa Mayor; +Cc: help-gnu-emacs

Igor Sosa Mayor <joseleopoldo1792@gmail.com> writes:

> Julien Cubizolles <j.cubizolles@free.fr> writes:
>> Right now I have ido loaded first then dired and I tried using your code
>> before both, after both and in between, and it didn't change the behaviour of dired-do-copy.
>
> I load dired, then ido and at the end I have this small tweak. 

It's working now, and I'm not sure the order is relevant. I had only
added

--8<---------------cut here---------------start------------->8---
(put 'dired-do-rename 'ido 'find-file)
--8<---------------cut here---------------end--------------->8---

and was only testing dired-do-copy instead of dired-do-rename...

Everything is fine, now.

Thanks for your help.

Julien.
> In any case, see here:
> http://stackoverflow.com/questions/11505878/get-ido-in-dired-buffers
>
> Maybe you could restart emacs and try.



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: ido in dired-do-copy/dired-do-rename
  2014-04-21 13:04       ` Julien Cubizolles
@ 2014-04-21 13:05         ` Igor Sosa Mayor
  0 siblings, 0 replies; 6+ messages in thread
From: Igor Sosa Mayor @ 2014-04-21 13:05 UTC (permalink / raw)
  To: help-gnu-emacs

Julien Cubizolles <j.cubizolles@free.fr> writes:

> Thanks for your help.

you're welcome.




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-04-21 13:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-18  9:14 ido in dired-do-copy/dired-do-rename Julien Cubizolles
2014-04-18  9:16 ` Igor Sosa Mayor
2014-04-19  9:23   ` Julien Cubizolles
2014-04-19 11:04     ` Igor Sosa Mayor
2014-04-21 13:04       ` Julien Cubizolles
2014-04-21 13:05         ` Igor Sosa Mayor

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.