ChangeLog 2.9 KB

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