ChangeLog 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. 2016-06-23 Ryan C. Thompson <rct@thompsonclan.org>
  2. * ido-ubiquitous.el (ido-ubiquitous-default-command-overrides):
  3. Remove the recently-added overrides for "describe-function" and
  4. "describe-variable". Ido completion interferes with a new feature
  5. of the completion for these functions, so it should be disabled
  6. unless ido can be made compatible with this feature.
  7. 2016-06-18 Ryan C. Thompson <rct@thompsonclan.org>
  8. * ido-ubiquitous.el (completing-read-ido-ubiquitous): Fix an edge
  9. case where COLLECTION is a function and PREDICATE is non-nil. This
  10. edge case caused errors in "describe-function" and
  11. "describe-variable" in Emacs 25.1.
  12. (completing-read-ido-ubiquitous): Make error handling more robust.
  13. In addition to falling back to normal completion on a specific set
  14. of expected errors, ido-ubiquitous now falls back on *any* error
  15. encountered in the body of "completing-read-ido-ubiquitous".
  16. (ido-ubiquitous-default-command-overrides): Add override for
  17. "describe-function" and "describe-variable", which now require
  18. them in Emacs 25.1.
  19. 2016-02-20 Ryan C. Thompson <rct@thompsonclan.org>
  20. * ido-completing-read+.el (ido-select-text): Eliminate another
  21. compiler warning
  22. 2016-02-17 Ryan C. Thompson <rct@thompsonclan.org>
  23. * test/ido-ubiquitous-test.el: Significant refactoring of awkward
  24. testing code. Tests should now be more robust.
  25. * ido-completing-read+.el (ido-select-text): Fix an edge case in
  26. ido-select-text: when require-match and default are both non-nil,
  27. it should be impossible to return an empty string.
  28. (ido-cr+-fallback-function): Don't allow ido-ubiquitous to be a
  29. fallback for ido-cr+.
  30. 2016-01-29 Ryan C. Thompson <rct@thompsonclan.org>
  31. * ido-ubiquitous.el (ido-ubiquitous--maybe-update-overrides):
  32. Change default auto-update setting to notify. If the user has
  33. customized overrides and new ones are added upstream, it will nag
  34. them until they choose to explicitly enable or disable
  35. auto-updating.
  36. 2016-01-16 Rasmus <rasmus@gmx.us>
  37. * ido-ubiquitous.el (ido-ubiquitous-update-overrides): Remove
  38. dependency on s.el.
  39. 2015-11-22 Ryan C. Thompson <rct@thompsonclan.org>
  40. * ido-ubiquitous.el (ido-ubiquitous--maybe-update-overrides):
  41. Allow ido-ubiquitous to automatically add new overrides.
  42. 2015-11-21 Ryan C. Thompson <rct@thompsonclan.org>
  43. * ido-ubiquitous.el: Fix up dependency declarations and require
  44. statements (including a pull request by Steve Purcell)
  45. * ido-completing-read+.el (ido-select-text): Fix C-j behavior when
  46. require-match is enabled
  47. 2015-10-04 Ryan C. Thompson <rct@thompsonclan.org>
  48. * ido-ubiquitous.el: Add override for etags-select
  49. 2015-06-19 Ryan C. Thompson <rct@thompsonclan.org>
  50. * ido-ubiquitous.el: Fix some byte-compile warnings in autoloads
  51. by also autoloading the associated variable declarations
  52. 2015-06-18 Ryan C. Thompson <rct@thompsonclan.org>
  53. * ido-ubiquitous.el: Ignore and warn about invalid overrides
  54. instead of crashing
  55. * ido-completing-read+.el: Fix some variable declaration warnings
  56. * ido-ubiquitous.el (ido-ubiquitous-default-command-overrides):
  57. Add override for "where-is" command
  58. 2015-05-28 Ryan C. Thompson <rct@thompsonclan.org>
  59. * ido-ubiquitous.el (ido-ubiquitous-version): Fix a typo in the previous version
  60. 2015-04-23 Ryan C. Thompson <rct@thompsonclan.org>
  61. * ido-completing-read+.el: Fix obsolete reference to "choices"
  62. instead of "collection"
  63. 2015-04-08 Ryan C. Thompson <rct@thompsonclan.org>
  64. * ido-ubiquitous.el: Major refactor. Split into two packages:
  65. ido-completing-read+.el and ido-ubiquitous.el that depends on it.
  66. Additionally, some of the customization variables for
  67. ido-ubiquitous have been changed for increased flexibility in
  68. configuration, and the internals have been rearchitected
  69. significantly.
  70. 2015-01-25 Ryan C. Thompson <rct@thompsonclan.org>
  71. * ido-ubiquitous: Fix indentation issues
  72. (https://github.com/DarwinAwardWinner/ido-ubiquitous/pull/62)
  73. 2014-09-04 Ryan C. Thompson <rct@thompsonclan.org>
  74. * ido-ubiquitous: Enable fallbacks to non-ido-completion using C-f
  75. and C-b
  76. 2014-05-26 Ryan C. Thompson <rct@thompsonclan.org>
  77. * ido-ubiquitous: Disable in tmm when called as a function as well
  78. as a command
  79. 2014-03-27 Ryan C. Thompson <rct@thompsonclan.org>
  80. * ido-ubiquitous: Add override for "*-theme" functions
  81. 2014-03-24 Ryan C. Thompson <rct@thompsonclan.org>
  82. * ido-ubiquitous: Fix a bug related to
  83. "ido-ubiquitous-allow-on-functional-collection"
  84. (#46)
  85. 2014-02-25 Ryan C. Thompson <rct@thompsonclan.org>
  86. * ido-ubiquitous: Disable in tmm-menubar
  87. 2013-11-19 Ryan C. Thompson <rct@thompsonclan.org>
  88. * ido-ubiquitous: Add new custom variable
  89. "ido-ubiquitous-allow-on-functional-collection"
  90. 2013-10-02 Ryan C. Thompson <rct@thompsonclan.org>
  91. * ido-ubiquitous: Enable in "read-char-by-name"
  92. 2013-09-27 Ryan C. Thompson <rct@thompsonclan.org>
  93. * ido-ubiquitous: Disable in org and magit since they already
  94. support ido
  95. 2013-09-26 Ryan C. Thompson <rct@thompsonclan.org>
  96. * ido-ubiquitous: Make ido-ubiquitous work with Emacs trunk
  97. (pre-24.4)
  98. * ido-ubiquitous: Fix a few minor and unlikely-to-ever-occur bugs
  99. * ido-ubiquitous: Replace collection function whitelist with
  100. overrides (overrides can now force ido completion when collection
  101. is a function)
  102. 2013-09-23 Ryan C. Thompson <rct@thompsonclan.org>
  103. * ido-ubiquitous: Implement collection function whitelist
  104. * ido-ubiquitous: Implement collection size limit for ido
  105. completion
  106. 2013-09-17 Ryan C. Thompson <rct@thompsonclan.org>
  107. * ido-ubiquitous: Eliminate use of "macroexp--backtrace", which
  108. doesn't exist in Emacs 24.2.
  109. 2013-09-11 Ryan C. Thompson <rct@thompsonclan.org>
  110. * ido-ubiquitous: Fix handling of collection being a function
  111. (issues #23 and #25).
  112. 2013-09-10 Ryan C. Thompson <rct@thompsonclan.org>
  113. * ido-ubiquitous: Fix the issue where `called-interactively-p'
  114. always returns false
  115. https://github.com/DarwinAwardWinner/ido-ubiquitous/issues/24
  116. 2013-09-05 Ryan C. Thompson <rct@thompsonclan.org>
  117. * ido-ubiquitous: Ido-ubiquitous now works better with interactive
  118. commands. Specifically, it now works when the completion happens
  119. inside the "interactive" form of the command instead of the
  120. function body.
  121. * ido-ubiquitous: Functions and commands that need non-standard
  122. behavior are now controlled through the variables
  123. "ido-ubiquitous-command-overrides" and
  124. "ido-ubiquitous-function-overrides".
  125. * ido-ubiquitous: Major rewrite of a significant portions of
  126. ido-ubiquitous.
  127. 2013-05-31 Ryan C. Thompson <rct@thompsonclan.org>
  128. * ido-ubiquitous: Officially drop support for Emacs 23 and lower.
  129. ido-ubiquitous now uses the `completing-read-function' variable
  130. instead of advising `completing-read'.
  131. * ido-ubiquitous: Make ido-ubiquitous work more reliably in
  132. interactive commands.
  133. * ido-ubiquitous: Avoid spurious warning when loaded before ido.
  134. * ido-ubiquitous: Disable ido when completion-extra-properties is
  135. non-nil
  136. * ido-ubiquitous: The interface for setting old-style completion
  137. compatibility has changed. If you have customized these settings,
  138. you should review them after upgrading.
  139. 2012-09-07 Ryan C. Thompson <rct@thompsonclan.org>
  140. * ido-ubiquitous: Restore compatibility with Emacs 23 and earlier
  141. * ido-ubiquitous: Work around an ido bug where providing both an
  142. initial input and a default would break things
  143. * ido-ubiquitous: Most modifications to ido behavior are now
  144. activated only when ido is acting as a completing-read
  145. replacement, and not when it is used directly. This shoud prevent
  146. ido-ubiquitous from interfering with normal usage of ido.
  147. * ido-ubiquitous: Add Custom interface for compatibility
  148. exceptions.
  149. 2012-09-03 Ryan C. Thompson <rct@thompsonclan.org>
  150. * ido-ubiquitous: New implementation: Switch from defining advice
  151. on "completing-read" to setting "completing-read-function"