ChangeLog 2.2 KB

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