ChangeLog 2.5 KB

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