ChangeLog 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. 2016-01-16 Rasmus <rasmus@gmx.us>
  2. * ido-ubiquitous.el (ido-ubiquitous-update-overrides): Remove
  3. dependency on s.el.
  4. 2015-11-22 Ryan C. Thompson <rct@thompsonclan.org>
  5. * ido-ubiquitous.el (ido-ubiquitous--maybe-update-overrides):
  6. Allow ido-ubiquitous to automatically add new overrides.
  7. 2015-11-21 Ryan C. Thompson <rct@thompsonclan.org>
  8. * ido-ubiquitous.el: Fix up dependency declarations and require
  9. statements (including a pull request by Steve Purcell)
  10. * ido-completing-read+.el (ido-select-text): Fix C-j behavior when
  11. require-match is enabled
  12. 2015-10-04 Ryan C. Thompson <rct@thompsonclan.org>
  13. * ido-ubiquitous.el: Add override for etags-select
  14. 2015-06-19 Ryan C. Thompson <rct@thompsonclan.org>
  15. * ido-ubiquitous.el: Fix some byte-compile warnings in autoloads
  16. by also autoloading the associated variable declarations
  17. 2015-06-18 Ryan C. Thompson <rct@thompsonclan.org>
  18. * ido-ubiquitous.el: Ignore and warn about invalid overrides
  19. instead of crashing
  20. * ido-completing-read+.el: Fix some variable declaration warnings
  21. * ido-ubiquitous.el (ido-ubiquitous-default-command-overrides):
  22. Add override for "where-is" command
  23. 2015-05-28 Ryan C. Thompson <rct@thompsonclan.org>
  24. * ido-ubiquitous.el (ido-ubiquitous-version): Fix a typo in the previous version
  25. 2015-04-23 Ryan C. Thompson <rct@thompsonclan.org>
  26. * ido-completing-read+.el: Fix obsolete reference to "choices"
  27. instead of "collection"
  28. 2015-04-08 Ryan C. Thompson <rct@thompsonclan.org>
  29. * Major refactor: split into two packages: ido-completing-read+.el
  30. and ido-ubiquitous.el that depends on it. Additionally, some of
  31. the customization variables for ido-ubiquitous have been changed
  32. for increased flexibility in configuration, and the internals have
  33. been rearchitected significantly.
  34. 2015-01-25 Ryan C. Thompson <rct@thompsonclan.org>
  35. * ido-ubiquitous: Fix indentation issues
  36. (https://github.com/DarwinAwardWinner/ido-ubiquitous/pull/62)
  37. 2014-09-04 Ryan C. Thompson <rct@thompsonclan.org>
  38. * ido-ubiquitous: Enable fallbacks to non-ido-completion using C-f
  39. and C-b
  40. 2014-05-26 Ryan C. Thompson <rct@thompsonclan.org>
  41. * ido-ubiquitous: Disable in tmm when called as a function as well
  42. as a command
  43. 2014-03-27 Ryan C. Thompson <rct@thompsonclan.org>
  44. * ido-ubiquitous: Add override for "*-theme" functions
  45. 2014-03-24 Ryan C. Thompson <rct@thompsonclan.org>
  46. * ido-ubiquitous: Fix a bug related to
  47. "ido-ubiquitous-allow-on-functional-collection"
  48. (#46)
  49. 2014-02-25 Ryan C. Thompson <rct@thompsonclan.org>
  50. * ido-ubiquitous: Disable in tmm-menubar
  51. 2013-11-19 Ryan C. Thompson <rct@thompsonclan.org>
  52. * ido-ubiquitous: Add new custom variable
  53. "ido-ubiquitous-allow-on-functional-collection"
  54. 2013-10-02 Ryan C. Thompson <rct@thompsonclan.org>
  55. * ido-ubiquitous: Enable in "read-char-by-name"
  56. 2013-09-27 Ryan C. Thompson <rct@thompsonclan.org>
  57. * ido-ubiquitous: Disable in org and magit since they already
  58. support ido
  59. 2013-09-26 Ryan C. Thompson <rct@thompsonclan.org>
  60. * ido-ubiquitous: Make ido-ubiquitous work with Emacs trunk
  61. (pre-24.4)
  62. * ido-ubiquitous: Fix a few minor and unlikely-to-ever-occur bugs
  63. * ido-ubiquitous: Replace collection function whitelist with
  64. overrides (overrides can now force ido completion when collection
  65. is a function)
  66. 2013-09-23 Ryan C. Thompson <rct@thompsonclan.org>
  67. * ido-ubiquitous: Implement collection function whitelist
  68. * ido-ubiquitous: Implement collection size limit for ido
  69. completion
  70. 2013-09-17 Ryan C. Thompson <rct@thompsonclan.org>
  71. * ido-ubiquitous: Eliminate use of "macroexp--backtrace", which
  72. doesn't exist in Emacs 24.2.
  73. 2013-09-11 Ryan C. Thompson <rct@thompsonclan.org>
  74. * ido-ubiquitous: Fix handling of collection being a function
  75. (issues #23 and #25).
  76. 2013-09-10 Ryan C. Thompson <rct@thompsonclan.org>
  77. * ido-ubiquitous: Fix the issue where `called-interactively-p'
  78. always returns false
  79. https://github.com/DarwinAwardWinner/ido-ubiquitous/issues/24
  80. 2013-09-05 Ryan C. Thompson <rct@thompsonclan.org>
  81. * ido-ubiquitous: Ido-ubiquitous now works better with interactive
  82. commands. Specifically, it now works when the completion happens
  83. inside the "interactive" form of the command instead of the
  84. function body.
  85. * ido-ubiquitous: Functions and commands that need non-standard
  86. behavior are now controlled through the variables
  87. "ido-ubiquitous-command-overrides" and
  88. "ido-ubiquitous-function-overrides".
  89. * ido-ubiquitous: Major rewrite of a significant portions of
  90. ido-ubiquitous.
  91. 2013-05-31 Ryan C. Thompson <rct@thompsonclan.org>
  92. * ido-ubiquitous: Officially drop support for Emacs 23 and lower.
  93. ido-ubiquitous now uses the `completing-read-function' variable
  94. instead of advising `completing-read'.
  95. * ido-ubiquitous: Make ido-ubiquitous work more reliably in
  96. interactive commands.
  97. * ido-ubiquitous: Avoid spurious warning when loaded before ido.
  98. * ido-ubiquitous: Disable ido when completion-extra-properties is
  99. non-nil
  100. * ido-ubiquitous: The interface for setting old-style completion
  101. compatibility has changed. If you have customized these settings,
  102. you should review them after upgrading.
  103. 2012-09-07 Ryan C. Thompson <rct@thompsonclan.org>
  104. * ido-ubiquitous: Restore compatibility with Emacs 23 and earlier
  105. * ido-ubiquitous: Work around an ido bug where providing both an
  106. initial input and a default would break things
  107. * ido-ubiquitous: Most modifications to ido behavior are now
  108. activated only when ido is acting as a completing-read
  109. replacement, and not when it is used directly. This shoud prevent
  110. ido-ubiquitous from interfering with normal usage of ido.
  111. * ido-ubiquitous: Add Custom interface for compatibility
  112. exceptions.
  113. 2012-09-03 Ryan C. Thompson <rct@thompsonclan.org>
  114. * ido-ubiquitous: New implementation: Switch from defining advice
  115. on "completing-read" to setting "completing-read-function"