ChangeLog 2.9 KB

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