1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- 2013-09-27 Ryan C. Thompson <rct@thompsonclan.org>
- * Disable in org and magit since they already support ido
- 2013-09-26 Ryan C. Thompson <rct@thompsonclan.org>
- * Make ido-ubiquitous work with Emacs trunk (pre-24.4)
- * Fix a few minor and unlikely-to-ever-occur bugs
- * Replace collection function whitelist with overrides (overrides
- can now force ido completion when collection is a function)
- 2013-09-23 Ryan C. Thompson <rct@thompsonclan.org>
- * Implement collection function whitelist
- * Implement collection size limit for ido completion
- 2013-09-17 Ryan C. Thompson <rct@thompsonclan.org>
- * Eliminate use of "macroexp--backtrace", which doesn't exist in
- Emacs 24.2.
- 2013-09-11 Ryan C. Thompson <rct@thompsonclan.org>
- * Fix handling of collection being a function (issues #23 and
- #25).
- 2013-09-10 Ryan C. Thompson <rct@thompsonclan.org>
- * Fix the issue where `called-interactively-p' always returns
- false
- https://github.com/DarwinAwardWinner/ido-ubiquitous/issues/24
- 2013-09-05 Ryan C. Thompson <rct@thompsonclan.org>
- * Ido-ubiquitous now works better with interactive
- commands. Specifically, it now works when the completion happens
- inside the "interactive" form of the command instead of the
- function body.
- * Functions and commands that need non-standard behavior are now
- controlled through the variables
- "ido-ubiquitous-command-overrides" and
- "ido-ubiquitous-function-overrides".
- * Major rewrite of a significant portions of ido-ubiquitous.
- 2013-05-31 Ryan C. Thompson <rct@thompsonclan.org>
- * Officially drop support for Emacs 23 and lower. ido-ubiquitous
- now uses the `completing-read-function' variable instead of
- advising `completing-read'.
- * Make ido-ubiquitous work more reliably in interactive commands.
- * Avoid spurious warning when loaded before ido.
- * Disable ido when completion-extra-properties is non-nil
- * The interface for setting old-style completion compatibility has
- changed. If you have customized these settings, you should review
- them after upgrading.
- 2012-09-07 Ryan C. Thompson <rct@thompsonclan.org>
- * Restore compatibility with Emacs 23 and earlier
- * Work around an ido bug where providing both an initial input and
- a default would break things
- * Most modifications to ido behavior are now activated only when
- ido is acting as a completing-read replacement, and not when it is
- used directly. This shoud prevent ido-ubiquitous from interfering
- with normal usage of ido.
- * Add Custom interface for compatibility exceptions.
- 2012-09-03 Ryan C. Thompson <rct@thompsonclan.org>
- * New implementation: Switch from defining advice on
- "completing-read" to setting "completing-read-function"
|