ChangeLog 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. 2013-09-10 Ryan C. Thompson <rct@thompsonclan.org>
  2. * Fix the issue where `called-interactively-p' always returns
  3. false
  4. https://github.com/DarwinAwardWinner/ido-ubiquitous/issues/24
  5. 2013-09-05 Ryan C. Thompson <rct@thompsonclan.org>
  6. * Ido-ubiquitous now works better with interactive
  7. commands. Specifically, it now works when the completion happens
  8. inside the "interactive" form of the command instead of the
  9. function body.
  10. * Functions and commands that need non-standard behavior are now
  11. controlled through the variables
  12. "ido-ubiquitous-command-overrides" and
  13. "ido-ubiquitous-function-overrides".
  14. * Major rewrite of a significant portions of ido-ubiquitous.
  15. 2013-05-31 Ryan C. Thompson <rct@thompsonclan.org>
  16. * Officially drop support for Emacs 23 and lower. ido-ubiquitous
  17. now uses the `completing-read-function' variable instead of
  18. advising `completing-read'.
  19. * Make ido-ubiquitous work more reliably in interactive commands.
  20. * Avoid spurious warning when loaded before ido.
  21. * Disable ido when completion-extra-properties is non-nil
  22. * The interface for setting old-style completion compatibility has
  23. changed. If you have customized these settings, you should review
  24. them after upgrading.
  25. 2012-09-07 Ryan C. Thompson <rct@thompsonclan.org>
  26. * Restore compatibility with Emacs 23 and earlier
  27. * Work around an ido bug where providing both an initial input and
  28. a default would break things
  29. * Most modifications to ido behavior are now activated only when
  30. ido is acting as a completing-read replacement, and not when it is
  31. used directly. This shoud prevent ido-ubiquitous from interfering
  32. with normal usage of ido.
  33. * Add Custom interface for compatibility exceptions.
  34. 2012-09-03 Ryan C. Thompson <rct@thompsonclan.org>
  35. * New implementation: Switch from defining advice on
  36. "completing-read" to setting "completing-read-function"