ChangeLog 3.2 KB

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