ChangeLog 2.2 KB

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