ChangeLog 2.6 KB

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