ChangeLog 2.7 KB

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