ChangeLog 3.3 KB

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