ChangeLog 2.0 KB

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