ChangeLog 3.1 KB

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