ChangeLog 2.1 KB

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