This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defun anything-update-or-select-action () | |
| "Immediately update anything candidates without delay. | |
| If invoked twice in a row, does anything-select-action" | |
| (interactive) | |
| (if (eq last-command 'anything-update-or-select-action) | |
| (anything-select-action) | |
| (anything-check-new-input (minibuffer-contents)))) | |
| (mapc #'(lambda (sym) | |
| (let ((map (and (boundp sym) (symbol-value sym)))) |
NewerOlder