1 ;;;; anything.el --- open anything / QuickSilver-like candidate-selection framework
3 ;; Copyright (C) 2007 Tamas Patrovics
4 ;; 2008, 2009, 2010 rubikitch <rubikitch@ruby-lang.org>
6 ;; Author: Tamas Patrovics
7 ;; Maintainer: rubikitch <rubikitch@ruby-lang.org>
8 ;; Keywords: files, frames, help, matching, outlines, processes, tools, convenience, anything
9 ;; URL: http://www.emacswiki.org/cgi-bin/wiki/download/anything.el
10 ;; Site: http://www.emacswiki.org/cgi-bin/emacs/Anything
11 (defvar anything-version nil
)
12 (setq anything-version
"1.287")
14 ;; This file is free software; you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation; either version 2, or (at your option)
19 ;; This file is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the
27 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
28 ;; Boston, MA 02110-1301, USA.
33 ;; Start with M-x anything, narrow the list by typing some pattern,
34 ;; select with up/down/pgup/pgdown/C-p/C-n/C-v/M-v, choose with enter,
35 ;; left/right moves between sources. With TAB actions can be selected
36 ;; if the selected candidate has more than one possible action.
38 ;; Note that anything.el provides only the framework and some example
39 ;; configurations for demonstration purposes. See anything-config.el
40 ;; for practical, polished, easy to use configurations which can be
41 ;; used to assemble a custom personalized configuration. And many
42 ;; other configurations are in the EmacsWiki.
44 ;; http://www.emacswiki.org/cgi-bin/wiki/download/anything-config.el
45 ;; http://www.emacswiki.org/cgi-bin/emacs/AnythingSources
47 ;; Maintainer's configuration is in the EmacsWiki. It would tell you
48 ;; many tips to write smart sources!
50 ;; http://www.emacswiki.org/cgi-bin/emacs/RubikitchAnythingConfiguration
52 ;; Here is Japanese translation of `anything-sources' attributes. Thanks.
53 ;; http://d.hatena.ne.jp/sirocco634/20091012/1255336649
57 ;; If you have problems, send a bug report via C-c C-x C-b in anything session (best)
58 ;; or M-x anything-send-bug-report outside anything session.
59 ;; I implemented bug report feature because I want to know your current state.
60 ;; It helps me to solve problems easily.
62 ;; 0) Setup mail in Emacs, the easiest way is:
63 ;; (setq user-mail-address "your@mail.address")
64 ;; (setq user-full-name "Your Full Name")
65 ;; (setq smtpmail-smtp-server "your.smtp.server.jp")
66 ;; (setq mail-user-agent 'message-user-agent)
67 ;; (setq message-send-mail-function 'message-smtpmail-send-it)
68 ;; 1) Be sure to use the LATEST version of anything.el.
69 ;; 2) Enable debugger. M-x toggle-debug-on-error or (setq debug-on-error t)
70 ;; 3) Use Lisp version instead of compiled one: (load "anything.el")
72 ;; 5) If you got an error, please do not close *Backtrace* buffer.
73 ;; 6) Type C-c C-x C-b (anything session, best!)
74 ;; or M-x anything-send-bug-report (outside)
75 ;; then M-x insert-buffer *Backtrace* (if you got error)
76 ;; 7) Describe the bug using a precise recipe.
77 ;; 8) Type C-c C-c to send.
78 ;; # If you are a Japanese, please write in Japanese:-)
83 ;; Below are complete command list:
85 ;; `anything-open-last-log'
86 ;; Open anything log file of last anything session.
88 ;; Select anything. In Lisp program, some optional arguments can be used.
90 ;; Resurrect previously invoked `anything'.
91 ;; `anything-at-point'
92 ;; Same as `anything' except when C-u is pressed, the initial input is the symbol at point.
93 ;; `anything-force-update'
94 ;; Recalculate and update candidates.
95 ;; `anything-select-action'
96 ;; Select an action for the currently selected candidate.
97 ;; `anything-previous-line'
98 ;; Move selection to the previous line.
99 ;; `anything-next-line'
100 ;; Move selection to the next line.
101 ;; `anything-previous-page'
102 ;; Move selection back with a pageful.
103 ;; `anything-next-page'
104 ;; Move selection forward with a pageful.
105 ;; `anything-beginning-of-buffer'
106 ;; Move selection at the top.
107 ;; `anything-end-of-buffer'
108 ;; Move selection at the bottom.
109 ;; `anything-previous-source'
110 ;; Move selection to the previous source.
111 ;; `anything-next-source'
112 ;; Move selection to the next source.
113 ;; `anything-select-with-prefix-shortcut'
114 ;; Invoke default action with prefix shortcut.
115 ;; `anything-select-with-digit-shortcut'
116 ;; Invoke default action with digit/alphabet shortcut.
117 ;; `anything-exit-minibuffer'
118 ;; Select the current candidate by exiting the minibuffer.
120 ;; Help of `anything'.
121 ;; `anything-debug-output'
122 ;; Show all anything-related variables at this time.
123 ;; `anything-delete-current-selection'
124 ;; Delete the currently selected item.
125 ;; `anything-delete-minibuffer-contents'
126 ;; Same as `delete-minibuffer-contents' but this is a command.
127 ;; `anything-toggle-resplit-window'
128 ;; Toggle resplit anything window, vertically or horizontally.
129 ;; `anything-select-2nd-action'
130 ;; Select the 2nd action for the currently selected candidate.
131 ;; `anything-select-3rd-action'
132 ;; Select the 3rd action for the currently selected candidate.
133 ;; `anything-select-4th-action'
134 ;; Select the 4th action for the currently selected candidate.
135 ;; `anything-select-2nd-action-or-end-of-line'
136 ;; Select the 2nd action for the currently selected candidate if the point is at the end of minibuffer.
137 ;; `anything-execute-persistent-action'
138 ;; If a candidate is selected then perform the associated action without quitting anything.
139 ;; `anything-scroll-other-window'
140 ;; Scroll other window (not *Anything* window) upward.
141 ;; `anything-scroll-other-window-down'
142 ;; Scroll other window (not *Anything* window) downward.
143 ;; `anything-toggle-visible-mark'
144 ;; Toggle anything visible mark at point.
145 ;; `anything-display-all-visible-marks'
146 ;; Show all `anything' visible marks strings.
147 ;; `anything-next-visible-mark'
148 ;; Move next anything visible mark.
149 ;; `anything-prev-visible-mark'
150 ;; Move previous anything visible mark.
151 ;; `anything-quit-and-find-file'
152 ;; Drop into `find-file' from `anything' like `iswitchb-find-file'.
153 ;; `anything-yank-selection'
154 ;; Set minibuffer contents to current selection.
155 ;; `anything-kill-selection-and-quit'
156 ;; Store current selection to kill ring.
157 ;; `anything-follow-mode'
158 ;; If this mode is on, persistent action is executed everytime the cursor is moved.
159 ;; `anything-migrate-sources'
160 ;; Help to migrate to new `anything' way.
161 ;; `anything-isearch'
162 ;; Start incremental search within results. (UNMAINTAINED)
163 ;; `anything-isearch-printing-char'
164 ;; Add printing char to the pattern.
165 ;; `anything-isearch-again'
166 ;; Search again for the current pattern
167 ;; `anything-isearch-delete'
169 ;; `anything-isearch-default-action'
170 ;; Execute the default action for the selected candidate.
171 ;; `anything-isearch-select-action'
172 ;; Choose an action for the selected candidate.
173 ;; `anything-isearch-cancel'
174 ;; Cancel Anything isearch.
175 ;; `anything-iswitchb-setup'
176 ;; Integrate anything completion into iswitchb (UNMAINTAINED).
177 ;; `anything-iswitchb-cancel-anything'
178 ;; Cancel anything completion and return to standard iswitchb.
179 ;; `anything-describe-anything-attribute'
180 ;; Display the full documentation of ANYTHING-ATTRIBUTE (a symbol).
181 ;; `anything-send-bug-report'
182 ;; Send a bug report of anything.el.
183 ;; `anything-send-bug-report-from-anything'
184 ;; Send a bug report of anything.el in anything session.
186 ;;; Customizable Options:
188 ;; Below are customizable option list:
191 ;; You can extend `anything' by writing plug-ins. As soon as
192 ;; `anything' is invoked, `anything-sources' is compiled into basic
193 ;; attributes, then compiled one is used during invocation.
195 ;; The oldest built-in plug-in is `type' attribute: appends
196 ;; appropriate element of `anything-type-attributes'. Second built-in
197 ;; plug-in is `candidates-in-buffer': selecting a line from candidates
200 ;; To write a plug-in:
201 ;; 1. Define a compiler: anything-compile-source--*
202 ;; 2. Add compier function to `anything-compile-source-functions'.
203 ;; 3. (optional) Write helper functions.
205 ;; Anything plug-ins are found in the EmacsWiki.
207 ;; http://www.emacswiki.org/cgi-bin/emacs/AnythingPlugins
209 ;; Tested on Emacs 22/23.
212 ;; Thanks to Vagn Johansen for ideas.
213 ;; Thanks to Stefan Kamphausen for fixes and XEmacs support.
214 ;; Thanks to Tassilo Horn for fixes.
215 ;; Thanks to Drew Adams for various fixes (frame, isearch, customization, etc.)
216 ;; Thanks to IMAKADO for candidates-in-buffer idea.
217 ;; Thanks to Tomohiro MATSUYAMA for multiline patch.
222 ;; If you have library `linkd.el', load
223 ;; `linkd.el' and turn on `linkd-mode' now. It lets you easily
224 ;; navigate around the sections Linkd mode will
225 ;; highlight this Index. You can get `linkd.el' here:
226 ;; http://www.emacswiki.org/cgi-bin/wiki/download/linkd.el
230 ;;; (@* "INCOMPATIBLE CHANGES")
234 ;; Default setting of `anything-save-configuration-functions' is changed.
235 ;; Anything saves/restores window configuration instead of frame configuration now.
236 ;; The default is changed because flickering is occurred in some environment.
238 ;; If you want to save and restore frame configuration, set this variable to
239 ;; '(set-frame-configuration . current-frame-configuration)
243 ;; Fitting frame is disabled by default, because some flickering occurred
244 ;; in some environment. To enable fitting, set both
245 ;; `anything-inhibit-fit-frame-flag' and `fit-frame-inhibit-fitting' to
250 ;; `anything-attr' returns nil when the source attribute is defined
251 ;; but the value of attribute is nil, eg. (volatile) cell. Use
252 ;; `anything-attr-defined' when testing whether the attribute is
258 ;; `anything' accepts keyword arguments. See docstring.
259 ;; [EVAL IT] (describe-function 'anything)
262 ;; `anything-enable-shortcuts' enables us to select candidate easily.
263 ;; If 'prefix then they can be selected using <prefix-key> <alnum>.
264 ;; The prefix key is `anything-select-with-prefix-shortcut'.
265 ;; If the <prefix-key> is a letter, pressing twice inputs the letter itself.
267 ;; (setq anything-enable-shortcuts 'prefix)
268 ;; (define-key anything-map \"@\" 'anything-select-with-prefix-shortcut)
271 ;; You can edit current selection using `anything-edit-current-selection'.
272 ;; It is useful after persistent-action.
275 ;; For `anything' users, setting `anything-sources' directly and
276 ;; invoke M-x anything is obsolete way for now. Try M-x
277 ;; `anything-migrate-sources'!
280 ;; If you want to create anything sources, yasnippet would help you.
281 ;; http://yasnippet.googlecode.com/
283 ;; Then get the snippet from
284 ;; http://www.emacswiki.org/cgi-bin/wiki/download/anything-source.yasnippet
286 ;; Put it in ~/.emacs.d/plugins/yasnippet/snippets/text-mode/emacs-lisp-mode/
290 ;; `anything-interpret-value' is useful function to interpret value
291 ;; like `candidates' attribute.
293 ;; (anything-interpret-value "literal") ; => "literal"
294 ;; (anything-interpret-value (lambda () "lambda")) ; => "lambda"
295 ;; (let ((source '((name . "lambda with source name"))))
296 ;; (anything-interpret-value
297 ;; (lambda () anything-source-name)
298 ;; source)) ; => "lambda with source name"
299 ;; (flet ((f () "function symbol"))
300 ;; (anything-interpret-value 'f)) ; => "function symbol"
301 ;; (let ((v "variable symbol"))
302 ;; (anything-interpret-value 'v)) ; => "variable symbol"
303 ;; (anything-interpret-value 'unbounded-1) ; error
306 ;; Now symbols are acceptable as candidates. So you do not have to use
307 ;; `symbol-name' function. The source is much simpler. For example,
308 ;; `apropos-internal' returns a list of symbols.
311 ;; '(((name . "Commands")
312 ;; (candidates . (lambda () (apropos-internal anything-pattern 'commandp)))
314 ;; (action . describe-function))))
317 ;; To mark a candidate, press C-SPC as normal Emacs marking. To go to
318 ;; marked candidate, press M-[ or M-].
321 ;; `anything-map' is now Emacs-standard key bindings by default. If
322 ;; you are using `iswitchb', execute `anything-iswitchb-setup'. Then
323 ;; some key bindings are adjusted to `iswitchb'. Note that
324 ;; anything-iswitchb is not maintained.
327 ;; There are many `anything' applications, using `anything' for
328 ;; selecting candidate. In this case, if there is one candidate or no
329 ;; candidate, popping up *anything* buffer is irritating. If one
330 ;; candidate, you want to select it at once. If no candidate, you want
331 ;; to quit `anything'. Set `anything-execute-action-at-once-if-one'
332 ;; and `anything-quit-if-no-candidate' to non-nil to remedy it. Note
333 ;; that setting these variables GLOBALLY is bad idea because of
334 ;; delayed sources. These are meant to be let-binded.
335 ;; See anything-etags.el for example.
337 ;; [EVAL IT] (install-elisp "http://www.emacswiki.org/cgi-bin/wiki/download/anything-etags.el")
340 ;; (let ((anything-execute-action-at-once-if-one t)
341 ;; (anything-quit-if-no-candidate (lambda () (message "No candidate"))))
342 ;; (anything temporary-sources input))
345 ;; `set-frame-configuration' arises flickering. If you hate
347 ;; (setq anything-save-configuration-functions
348 ;; '(set-window-configuration . current-window-configuration))
349 ;; at the cost of restoring frame configuration (only window configuration).
352 ;; `anything-delete-current-selection' deletes the current line.
353 ;; It is useful when deleting a candidate in persistent action.
354 ;; eg. `kill-buffer'.
356 ;; [EVAL IT] (describe-function 'anything-delete-current-selection)
359 ;; `anything-attr' gets the attribute. `anything-attrset' sets the
360 ;; attribute. `anything-attr-defined' tests whether the attribute is
361 ;; defined. They handles source-local variables.
363 ;; [EVAL IT] (describe-function 'anything-attr)
364 ;; [EVAL IT] (describe-function 'anything-attrset)
365 ;; [EVAL IT] (describe-function 'anything-attr-defined)
368 ;; `anything-sources' accepts many attributes to make your life easier.
369 ;; Now `anything-sources' accepts a list of symbols.
371 ;; [EVAL IT] (describe-variable 'anything-sources)
374 ;; `anything' has optional arguments. Now you do not have to let-bind
375 ;; `anything-sources'.
377 ;; [EVAL IT] (describe-function 'anything)
380 ;; `anything-resume' resumes last `anything' session. Now you do not
381 ;; have to retype pattern.
383 ;; [EVAL IT] (describe-function 'anything-resume)
386 ;; `anything-execute-persistent-action' executes action without
387 ;; quitting `anything'. When popping up a buffer in other window by
388 ;; persistent action, you can scroll with `anything-scroll-other-window' and
389 ;; `anything-scroll-other-window-down'. See also `anything-sources' docstring.
391 ;; [EVAL IT] (describe-function 'anything-execute-persistent-action)
392 ;; [EVAL IT] (describe-variable 'anything-sources)
395 ;; `anything-select-2nd-action', `anything-select-3rd-action' and
396 ;; `anything-select-4th-action' select other than default action
397 ;; without pressing Tab.
400 ;; Using `anything-candidate-buffer' and the candidates-in-buffer
401 ;; attribute is much faster than traditional "candidates and match"
402 ;; way. And `anything-current-buffer-is-modified' avoids to
403 ;; recalculate candidates for unmodified buffer. See docstring of
406 ;; [EVAL IT] (describe-function 'anything-candidate-buffer)
407 ;; [EVAL IT] (describe-function 'anything-candidates-in-buffer)
408 ;; [EVAL IT] (describe-function 'anything-current-buffer-is-modified)
411 ;; `anything-current-buffer' and `anything-buffer-file-name' stores
412 ;; `(current-buffer)' and `buffer-file-name' in the buffer `anything'
413 ;; is invoked. Use them freely.
415 ;; [EVAL IT] (describe-variable 'anything-current-buffer)
416 ;; [EVAL IT] (describe-variable 'anything-buffer-file-name)
419 ;; `anything-completing-read' and `anything-read-file-name' are
420 ;; experimental implementation. If you are curious, type M-x
421 ;; anything-read-string-mode. It is a minor mode and toggles on/off.
424 ;; Use `anything-test-candidates' to test your handmade anything
425 ;; sources. It simulates contents of *anything* buffer with pseudo
426 ;; `anything-sources' and `anything-pattern', without side-effect. So
427 ;; you can unit-test your anything sources! Let's TDD!
429 ;; [EVAL IT] (describe-function 'anything-test-candidates)
431 ;; There are many unit-testing framework in Emacs Lisp. See the EmacsWiki.
432 ;; http://www.emacswiki.org/cgi-bin/emacs/UnitTesting
434 ;; There is an unit-test by Emacs Lisp Expectations at the tail of this file.
435 ;; http://www.emacswiki.org/cgi-bin/wiki/download/el-expectations.el
436 ;; http://www.emacswiki.org/cgi-bin/wiki/download/el-mock.el
439 ;; If you want to create anything sources, see anything-config.el.
440 ;; It is huge collection of sources. You can learn from examples.
445 ;; - process status indication
447 ;; - async sources doesn't honor digit-shortcut-count
449 ;; - anything-candidate-number-limit can't be nil everywhere
453 ;; Change log of this file is found at
454 ;; http://repo.or.cz/w/anything-config.git/history/master:/anything.el
456 ;; Change log of this project is found at
457 ;; http://repo.or.cz/w/anything-config.git?a=shortlog
460 ;; (require 'anything-match-plugin nil t)
462 ;; (@* "User Configuration")
464 ;; This is only an example. Customize it to your own taste!
465 (defvar anything-sources
466 `(((name .
"Buffers")
469 (remove-if (lambda (name)
470 (or (equal name anything-buffer
)
471 (eq ?\
(aref name
0))))
472 (mapcar 'buffer-name
(buffer-list)))))
475 ((name .
"File Name History")
476 (candidates . file-name-history
)
477 (match (lambda (candidate)
478 ;; list basename matches first
481 (file-name-nondirectory candidate
)))
484 ;; and then directory part matches
485 (let ((dir (file-name-directory candidate
)))
487 (string-match anything-pattern dir
)))))
490 ((name .
"Files from Current Directory")
492 (setq anything-default-directory
494 (candidates .
(lambda ()
496 anything-default-directory
)))
499 ((name .
"Complex Command History")
500 (candidates .
(lambda ()
501 (mapcar 'prin1-to-string
503 (action .
(("Repeat Complex Command" .
507 "The source of candidates for anything.
509 (setq anything-sources (list anything-c-foo anything-c-bar))
511 (setq anything-sources '(anything-c-foo anything-c-bar))
512 The latter is recommended because if you change anything-c-* variable,
513 you do not have to update `anything-sources'.
515 You are STRONGLY recommended to define a command which calls
516 `anything' or `anything-other-buffer' with argument rather than
517 to set `anything-sources' externally.
519 If you want to change `anything-sources' during `anything' invocation,
520 use `anything-set-sources', never use `setq'.
527 ;; This value is only provided as an example. Customize it to your own
529 (defvar anything-type-attributes
530 '((file (action .
(("Find File" . find-file
)
533 (if (y-or-n-p (format "Really delete file %s? " file
))
534 (delete-file file
)))))))
535 (buffer (action .
(("Switch to Buffer" . switch-to-buffer
)
536 ("Pop to Buffer" . pop-to-buffer
)
537 ("Display Buffer" . display-buffer
)
538 ("Kill Buffer" . kill-buffer
)))))
539 "It's a list of (TYPE ATTRIBUTES ...). ATTRIBUTES are the same
540 as attributes for `anything-sources'. TYPE connects the value
541 to the appropriate sources in `anything-sources'.
543 This allows specifying common attributes for several
544 sources. For example, sources which provide files can specify
545 common attributes with a `file' type.")
548 (defvaralias 'anything-enable-digit-shortcuts
'anything-enable-shortcuts
549 "Alphabet shortcuts are usable now. Then `anything-enable-digit-shortcuts' should be renamed.
550 `anything-enable-digit-shortcuts' is retained for compatibility.")
551 (defvar anything-enable-shortcuts nil
552 "*Whether to use digit/alphabet shortcut to select the first nine matches.
553 If t then they can be selected using Ctrl+<number>.
555 If 'prefix then they can be selected using <prefix-key> <alnum>.
556 The prefix key is `anything-select-with-prefix-shortcut'.
557 If the <prefix-key> is a letter, pressing twice inputs the letter itself.
559 (setq anything-enable-shortcuts 'prefix)
560 (define-key anything-map \"@\" 'anything-select-with-prefix-shortcut)
562 If 'alphabet then they can be selected using Shift+<alphabet> (deprecated).
563 It is not recommended because you cannot input capital letters in pattern.
565 Keys (digit/alphabet) are listed in `anything-shortcut-keys-alist'.")
567 (defvar anything-shortcut-keys-alist
568 '((alphabet .
"asdfghjklzxcvbnmqwertyuiop")
569 (prefix .
"asdfghjklzxcvbnmqwertyuiop1234567890")
572 (defvar anything-display-source-at-screen-top t
573 "*If t, `anything-next-source' and `anything-previous-source'
574 display candidates at the top of screen.")
576 (defvar anything-candidate-number-limit
50
577 "*Do not show more candidates than this limit from individual
578 sources. It is usually pointless to show hundreds of matches
579 when the pattern is empty, because it is much simpler to type a
580 few characters to narrow down the list of potential candidates.
582 Set it to nil if you don't want this limit.")
585 (defvar anything-idle-delay
0.5
586 "*The user has to be idle for this many seconds, before
587 candidates from delayed sources are collected. This is useful
588 for sources involving heavy operations (like launching external
589 programs), so that candidates from the source are not retrieved
590 unnecessarily if the user keeps typing.
592 It also can be used to declutter the results anything displays,
593 so that results from certain sources are not shown with every
594 character typed, only if the user hesitates a bit.")
597 (defvar anything-input-idle-delay
0.1
598 "The user has to be idle for this many seconds, before ALL candidates are collected.
599 Unlink `anything-input-idle', it is also effective for non-delayed sources.
600 If nil, candidates are collected immediately. ")
603 (defvar anything-samewindow nil
604 "If t then Anything doesn't pop up a new window, it uses the
605 current window to show the candidates.")
608 (defvar anything-source-filter nil
609 "A list of source names to be displayed. Other sources won't
610 appear in the search results. If nil then there is no filtering.
611 See also `anything-set-source-filter'.")
615 (let ((map (copy-keymap minibuffer-local-map
)))
616 (define-key map
(kbd "<down>") 'anything-next-line
)
617 (define-key map
(kbd "<up>") 'anything-previous-line
)
618 (define-key map
(kbd "C-n") 'anything-next-line
)
619 (define-key map
(kbd "C-p") 'anything-previous-line
)
620 (define-key map
(kbd "<prior>") 'anything-previous-page
)
621 (define-key map
(kbd "<next>") 'anything-next-page
)
622 (define-key map
(kbd "M-v") 'anything-previous-page
)
623 (define-key map
(kbd "C-v") 'anything-next-page
)
624 (define-key map
(kbd "M-<") 'anything-beginning-of-buffer
)
625 (define-key map
(kbd "M->") 'anything-end-of-buffer
)
626 (define-key map
(kbd "<right>") 'anything-next-source
)
627 (define-key map
(kbd "<left>") 'anything-previous-source
)
628 (define-key map
(kbd "<RET>") 'anything-exit-minibuffer
)
629 (define-key map
(kbd "C-1") 'anything-select-with-digit-shortcut
)
630 (define-key map
(kbd "C-2") 'anything-select-with-digit-shortcut
)
631 (define-key map
(kbd "C-3") 'anything-select-with-digit-shortcut
)
632 (define-key map
(kbd "C-4") 'anything-select-with-digit-shortcut
)
633 (define-key map
(kbd "C-5") 'anything-select-with-digit-shortcut
)
634 (define-key map
(kbd "C-6") 'anything-select-with-digit-shortcut
)
635 (define-key map
(kbd "C-7") 'anything-select-with-digit-shortcut
)
636 (define-key map
(kbd "C-8") 'anything-select-with-digit-shortcut
)
637 (define-key map
(kbd "C-9") 'anything-select-with-digit-shortcut
)
638 (loop for c from ?A to ?Z do
639 (define-key map
(make-string 1 c
) 'anything-select-with-digit-shortcut
))
640 (define-key map
(kbd "C-i") 'anything-select-action
)
641 (define-key map
(kbd "C-z") 'anything-execute-persistent-action
)
642 (define-key map
(kbd "C-e") 'anything-select-2nd-action-or-end-of-line
)
643 (define-key map
(kbd "C-j") 'anything-select-3rd-action
)
644 (define-key map
(kbd "C-o") 'anything-next-source
)
645 (define-key map
(kbd "C-M-v") 'anything-scroll-other-window
)
646 (define-key map
(kbd "M-<next>") 'anything-scroll-other-window
)
647 (define-key map
(kbd "C-M-y") 'anything-scroll-other-window-down
)
648 (define-key map
(kbd "C-M-S-v") 'anything-scroll-other-window-down
)
649 (define-key map
(kbd "M-<prior>") 'anything-scroll-other-window-down
)
650 (define-key map
(kbd "C-SPC") 'anything-toggle-visible-mark
)
651 (define-key map
(kbd "M-[") 'anything-prev-visible-mark
)
652 (define-key map
(kbd "M-]") 'anything-next-visible-mark
)
653 (define-key map
(kbd "C-k") 'anything-delete-minibuffer-contents
)
655 (define-key map
(kbd "C-s") 'anything-isearch
)
656 (define-key map
(kbd "C-r") 'undefined
)
657 (define-key map
(kbd "C-t") 'anything-toggle-resplit-window
)
658 (define-key map
(kbd "C-x C-f") 'anything-quit-and-find-file
)
660 (define-key map
(kbd "C-c C-d") 'anything-delete-current-selection
)
661 (define-key map
(kbd "C-c C-y") 'anything-yank-selection
)
662 (define-key map
(kbd "C-c C-k") 'anything-kill-selection-and-quit
)
663 (define-key map
(kbd "C-c C-f") 'anything-follow-mode
)
664 (define-key map
(kbd "C-c C-u") 'anything-force-update
)
667 (define-key map
"\C-c\C-x\C-d" 'anything-debug-output
)
668 (define-key map
"\C-c\C-x\C-m" 'anything-display-all-visible-marks
)
669 (define-key map
"\C-c\C-x\C-b" 'anything-send-bug-report-from-anything
)
670 ;; Use `describe-mode' key in `global-map'
671 (dolist (k (where-is-internal 'describe-mode global-map
))
672 (define-key map k
'anything-help
))
673 ;; the defalias is needed because commands are bound by name when
674 ;; using iswitchb, so only commands having the prefix anything-
676 (defalias 'anything-previous-history-element
'previous-history-element
)
677 (defalias 'anything-next-history-element
'next-history-element
)
678 (define-key map
(kbd "M-p") 'anything-previous-history-element
)
679 (define-key map
(kbd "M-n") 'anything-next-history-element
)
681 "Keymap for anything.
683 If you execute `anything-iswitchb-setup', some keys are modified.
684 See `anything-iswitchb-setup-keys'.")
686 (defvar anything-isearch-map
687 (let ((map (make-sparse-keymap)))
688 (set-keymap-parent map
(current-global-map))
689 (define-key map
(kbd "<return>") 'anything-isearch-default-action
)
690 (define-key map
(kbd "<RET>") 'anything-isearch-default-action
)
691 (define-key map
(kbd "C-i") 'anything-isearch-select-action
)
692 (define-key map
(kbd "C-g") 'anything-isearch-cancel
)
693 (define-key map
(kbd "M-s") 'anything-isearch-again
)
694 (define-key map
(kbd "<backspace>") 'anything-isearch-delete
)
695 ;; add printing chars
696 (loop for i from
32 below
256 do
697 (define-key map
(vector i
) 'anything-isearch-printing-char
))
699 "Keymap for anything incremental search.")
702 (defgroup anything nil
703 "Open anything." :prefix
"anything-" :group
'convenience
)
705 (defface anything-header
706 '((t (:inherit header-line
)))
707 "Face for header lines in the anything buffer." :group
'anything
)
709 (defvar anything-header-face
'anything-header
710 "Face for header lines in the anything buffer.")
712 (defface anything-isearch-match
'((t (:background
"Yellow")))
713 "Face for isearch in the anything buffer." :group
'anything
)
715 (defvar anything-isearch-match-face
'anything-isearch-match
716 "Face for matches during incremental search.")
718 (defvar anything-selection-face
'highlight
719 "Face for currently selected item.")
721 (defvar anything-iswitchb-idle-delay
1
722 "Show anything completions if the user is idle that many
723 seconds after typing.")
725 (defvar anything-iswitchb-dont-touch-iswithcb-keys nil
726 "If t then those commands are not bound from `anything-map'
727 under iswitchb which would override standard iswithcb keys.
729 This allows an even more seamless integration with iswitchb for
730 those who prefer using iswitchb bindings even if the anything
731 completions buffer is popped up.
733 Note that you can bind alternative keys for the same command in
734 `anything-map', so that you can use different keys for anything
735 under iswitchb. For example, I bind the character \ to
736 `anything-exit-minibuffer' which key is just above Enter on my
737 keyboard. This way I can switch buffers with Enter and choose
738 anything completions with \.")
740 ;;----------------------------------------------------------------------
742 (defvar anything-buffer
"*anything*"
743 "Buffer showing completions.")
745 (defvar anything-action-buffer
"*anything action*"
746 "Buffer showing actions.")
748 (defvar anything-selection-overlay nil
749 "Overlay used to highlight the currently selected item.")
751 (defvar anything-isearch-overlay nil
752 "Overlay used to highlight the current match during isearch.")
754 (defvar anything-digit-overlays nil
755 "Overlays for digit shortcuts. See `anything-enable-shortcuts'.")
757 (defvar anything-candidate-cache nil
758 "Holds the available candidate withing a single anything invocation.")
760 (defvar anything-pattern
761 "The input pattern used to update the anything buffer.")
763 (defvar anything-input
764 "The input typed in the candidates panel.")
766 (defvar anything-async-processes nil
767 "List of information about asynchronous processes managed by anything.")
769 (defvar anything-digit-shortcut-count
0
770 "Number of digit shortcuts shown in the anything buffer.")
772 (defvar anything-before-initialize-hook nil
773 "Run before anything initialization.
774 This hook is run before init functions in `anything-sources'.")
776 (defvar anything-after-initialize-hook nil
777 "Run after anything initialization.
778 Global variables are initialized and the anything buffer is created.
779 But the anything buffer has no contents. ")
781 (defvar anything-update-hook nil
782 "Run after the anything buffer was updated according the new input pattern.
783 This hook is run at the beginning of buffer.
784 The first candidate is selected after running this hook.
785 See also `anything-after-update-hook'.")
787 (defvar anything-after-update-hook nil
788 "Run after the anything buffer was updated according the new input pattern.
789 This is very similar to `anything-update-hook' but selection is not moved.
790 It is useful to select a particular object instead of the first one. ")
792 (defvar anything-cleanup-hook nil
793 "Run after anything minibuffer is closed, IOW this hook is executed BEFORE performing action. ")
795 (defvar anything-after-action-hook nil
796 "Run after executing action.")
798 (defvar anything-after-persistent-action-hook nil
799 "Run after executing persistent action.")
801 (defvar anything-restored-variables
802 '( anything-candidate-number-limit
803 anything-source-filter
804 anything-source-in-each-line-flag
807 deferred-action-list
)
808 "Variables which are restored after `anything' invocation.")
809 ;; `anything-saved-sources' is removed
811 (defvar anything-saved-selection nil
812 "Saved value of the currently selected object when the action
815 ;; `anything-original-source-filter' is removed
817 (defvar anything-candidate-separator
818 "--------------------"
819 "Candidates separator of `multiline' source.")
821 (defvar anything-current-buffer nil
822 "Current buffer when `anything' is invoked.")
824 (defvar anything-buffer-file-name nil
825 "`buffer-file-name' when `anything' is invoked.")
827 (defvar anything-saved-action nil
828 "Saved value of the currently selected action by key.")
830 (defvar anything-last-sources nil
831 "OBSOLETE!! Sources of previously invoked `anything'.")
833 (defvar anything-saved-current-source nil
834 "Saved value of the original (anything-get-current-source) when the action
837 (defvar anything-compiled-sources nil
838 "Compiled version of `anything-sources'. ")
840 (defvar anything-in-persistent-action nil
841 "Flag whether in persistent-action or not.")
843 (defvar anything-quick-update nil
844 "If non-nil, suppress displaying sources which are out of screen at first.
845 They are treated as delayed sources at this input.
846 This flag makes `anything' a bit faster with many sources.")
848 (defvar anything-last-sources-local nil
849 "Buffer local value of `anything-sources'.")
850 (defvar anything-last-buffer nil
851 "`anything-buffer' of previously `anything' session.")
853 (defvar anything-save-configuration-functions
854 '(set-window-configuration . current-window-configuration
)
855 "If you want to save and restore frame configuration, set this variable to
856 '(set-frame-configuration . current-frame-configuration)
858 Older version saves/restores frame configuration, but the default is changed now,
859 because flickering is occurred in some environment.
862 (defvar anything-persistent-action-use-special-display nil
863 "If non-nil, use `special-display-function' in persistent action.")
865 (defvar anything-execute-action-at-once-if-one nil
866 "If non-nil and there is one candidate, execute the first action without selection.
867 It is useful for `anything' applications.")
869 (defvar anything-quit-if-no-candidate nil
870 "if non-nil and there is no candidate, do not display *anything* buffer and quit.
871 This variable accepts a function, which is executed if no candidate.
873 It is useful for `anything' applications.")
875 (defvar anything-scroll-amount nil
876 "Scroll amount used by `anything-scroll-other-window' and `anything-scroll-other-window-down'.
877 If you prefer scrolling line by line, set this value to 1.")
879 (defvar anything-display-function
'anything-default-display-buffer
880 "Function to display *anything* buffer.
881 It is `anything-default-display-buffer' by default, which affects `anything-samewindow'.")
883 (defvar anything-delayed-init-executed nil
)
885 (defvar anything-mode-line-string
"\\<anything-map>\\[anything-help]:help \\[anything-select-action]:Acts \\[anything-exit-minibuffer]/\\[anything-select-2nd-action-or-end-of-line]/\\[anything-select-3rd-action]:NthAct \\[anything-send-bug-report-from-anything]:BugReport"
886 "Help string displayed in mode-line in `anything'.
887 If nil, use default `mode-line-format'.")
889 (defvar anything-help-message
890 "\\<anything-map>The keys that are defined for `anything' are:
892 "Detailed help message string for `anything'.
893 It also accepts function or variable symbol.")
895 (put 'anything
'timid-completion
'disabled
)
897 (defvar anything-inhibit-fit-frame-flag t
898 "If non-nil, inhibit fitting anything frame to its buffer.
899 It is nil by default because some flickering occurred in some environment.
901 To enable fitting, set both `anything-inhibit-fit-frame-flag' and
902 `fit-frame-inhibit-fitting' to nil.")
904 (defvar anything-source-in-each-line-flag nil
905 "If non-nil, add anything-source text-property in each candidate.
906 experimental feature.")
908 (defvaralias 'anything-debug-variables
'anything-debug-forms
)
909 (defvar anything-debug-forms nil
910 "Forms to show in `anything-debug-output'.
911 Otherwise all variables started with `anything-' are shown.
912 It is useful for debug.")
914 (defvar anything-debug nil
915 "If non-nil, write log message into *Anything Log* buffer.
916 If `debug-on-error' is non-nil, write log message regardless of this variable.
917 It is disabled by default because *Anything Log* grows quickly.")
919 ;; (@* "Internal Variables")
920 (defvar anything-test-candidate-list nil
)
921 (defvar anything-test-mode nil
)
922 (defvar anything-source-name nil
)
923 (defvar anything-candidate-buffer-alist nil
)
924 (defvar anything-check-minibuffer-input-timer nil
)
925 (defvar anything-match-hash
(make-hash-table :test
'equal
))
926 (defvar anything-cib-hash
(make-hash-table :test
'equal
))
927 (defvar anything-tick-hash
(make-hash-table :test
'equal
))
928 (defvar anything-issued-errors nil
)
929 (defvar anything-shortcut-keys nil
)
930 (defvar anything-once-called-functions nil
)
931 (defvar anything-follow-mode nil
)
932 (defvar anything-let-variables nil
)
934 ;; (@* "Utility: logging")
935 (defun anything-log (format-string &rest args
)
936 "Log message if `debug-on-error' or `anything-debug' is non-nil.
937 Messages are written to the *Anythingn Log* buffer.
938 Arguments are same as `format'."
939 (when (or debug-on-error anything-debug
)
940 (with-current-buffer (get-buffer-create "*Anything Log*")
941 (buffer-disable-undo)
942 (set (make-local-variable 'inhibit-read-only
) t
)
943 (goto-char (point-max))
944 (insert (let ((tm (current-time)))
945 (format "%s.%06d (%s) %s\n"
946 (format-time-string "%H:%M:%S" tm
)
948 (anything-log-get-current-function)
949 (apply #'format
(cons format-string args
))))))))
950 (defmacro anything-log-eval
(&rest exprs
)
951 "Write each EXPR evaluation result to the *Anything Log* buffer."
952 `(anything-log-eval-internal ',exprs
))
953 (defun anything-log-run-hook (hook)
954 (anything-log "executing %s" hook
)
956 (anything-log-eval (symbol-value hook
))
957 (anything-log-eval (default-value hook
)))
959 (anything-log "executed %s" hook
))
960 (defun anything-log-eval-internal (exprs)
963 (anything-log "%S = %S" expr
(eval expr
))
964 (error (anything-log "%S = ERROR!" expr
)))))
965 (defun anything-log-get-current-function ()
966 "Get function name calling `anything-log'.
967 The original idea is from `tramp-debug-message'."
968 (loop with exclude-func-re
= "^anything-\\(?:interpret\\|log\\|.*funcall\\)"
969 for btn from
1 to
40 ;avoid inf-loop
970 for btf
= (second (backtrace-frame btn
))
971 for fn
= (if (symbolp btf
) (symbol-name btf
) "")
972 if
(and (string-match "^anything" fn
)
973 (not (string-match exclude-func-re fn
)))
976 (defun anything-log-error (&rest args
)
977 "Accumulate error messages into `anything-issued-errors'."
978 (apply 'anything-log
(concat "ERROR: " (car args
)) (cdr args
))
979 (let ((msg (apply 'format args
)))
980 (unless (member msg anything-issued-errors
)
981 (add-to-list 'anything-issued-errors msg
))))
983 (defvar anything-last-log-file nil
)
984 (defun anything-log-save-maybe ()
985 (when (stringp anything-debug
)
986 (let ((logdir (expand-file-name (format-time-string "%Y%m%d")
988 (make-directory logdir t
)
989 (with-current-buffer (get-buffer-create "*Anything Log*")
990 (write-region (point-min) (point-max)
991 (setq anything-last-log-file
992 (expand-file-name (format-time-string "%Y%m%d-%H%M%S")
997 (defun anything-open-last-log ()
998 "Open anything log file of last anything session."
1000 (if anything-last-log-file
1001 (view-file anything-last-log-file
)
1002 (switch-to-buffer "*Anything Log*")))
1004 (defun anything-print-error-messages ()
1005 "Print error messages in `anything-issued-errors'."
1006 (message "%s" (mapconcat 'identity
(reverse anything-issued-errors
) "\n")))
1011 ;; (anything-log "test")
1012 ;; (switch-to-buffer-other-window "*Anything Log*")
1014 ;; (@* "Programming Tools")
1015 (defmacro anything-aif
(test-form then-form
&rest else-forms
)
1016 "Anaphoric if. Temporary variable `it' is the result of test-form."
1017 `(let ((it ,test-form
))
1018 (if it
,then-form
,@else-forms
)))
1019 (put 'anything-aif
'lisp-indent-function
2)
1021 (defun anything-mklist (obj)
1022 "If OBJ is a list (but not lambda), return itself, otherwise make a list with one element."
1023 (if (and (listp obj
) (not (functionp obj
)))
1027 ;; (@* "Anything API")
1028 (defmacro anything-let
(varlist &rest body
)
1029 "[OBSOLETE] Like `let'. Bind anything buffer local variables according to VARLIST then eval BODY."
1030 `(anything-let-internal (anything-let-eval-varlist ',varlist
)
1031 (lambda () ,@body
)))
1032 (put 'anything-let
'lisp-indent-function
1)
1034 (defmacro anything-let
* (varlist &rest body
)
1035 "[OBSOLETE] Like `let*'. Bind anything buffer local variables according to VARLIST then eval BODY."
1036 `(anything-let-internal (anything-let*-eval-varlist
',varlist
)
1037 (lambda () ,@body
)))
1038 (put 'anything-let
* 'lisp-indent-function
1)
1040 (defun anything-buffer-get ()
1041 "If *anything action* buffer is shown, return `anything-action-buffer', otherwise `anything-buffer'."
1042 (if (anything-action-window)
1043 anything-action-buffer
1046 (defun anything-window ()
1047 "Window of `anything-buffer'."
1048 (get-buffer-window (anything-buffer-get) 'visible
))
1050 (defun anything-action-window ()
1051 "Window of `anything-action-buffer'."
1052 (get-buffer-window anything-action-buffer
'visible
))
1054 (defmacro with-anything-window
(&rest body
)
1055 `(let ((--tmpfunc-- (lambda () ,@body
)))
1056 (if anything-test-mode
1057 (with-current-buffer (anything-buffer-get)
1058 (funcall --tmpfunc--
))
1059 (with-selected-window (anything-window)
1060 (funcall --tmpfunc--
)))))
1061 (put 'with-anything-window
'lisp-indent-function
0)
1063 (defun anything-deferred-action-function ()
1064 (dolist (f deferred-action-list
) (funcall f
)))
1065 (defmacro with-anything-restore-variables
(&rest body
)
1066 "Restore variables specified by `anything-restored-variables' after executing BODY . "
1067 `(let ((--orig-vars (mapcar (lambda (v) (cons v
(symbol-value v
)))
1068 anything-restored-variables
))
1069 (deferred-action-function 'anything-deferred-action-function
))
1070 (anything-log "save variables: %S" --orig-vars
)
1071 (unwind-protect (progn ,@body
)
1072 (loop for
(var . value
) in --orig-vars
1074 (anything-log "restore variables"))))
1075 (put 'with-anything-restore-variables
'lisp-indent-function
0)
1077 (defun* anything-attr
(attribute-name &optional
(src (anything-get-current-source)))
1078 "Get the value of ATTRIBUTE-NAME of SRC (source).
1079 if SRC is omitted, use current source.
1080 It is useful to write your sources."
1081 (anything-aif (assq attribute-name src
)
1084 (defun* anything-attr
* (attribute-name &optional
(src (anything-get-current-source)))
1085 "Get the value of ATTRIBUTE-NAME of SRC (source) and pass to `anything-interpret-value'.
1086 if SRC is omitted, use current source.
1087 It is useful to write your sources."
1088 (anything-interpret-value (anything-attr attribute-name src
)))
1090 (defun* anything-attr-defined
(attribute-name &optional
(src (anything-get-current-source)))
1091 "Return non-nil if ATTRIBUTE-NAME of SRC (source) is defined.
1092 if SRC is omitted, use current source.
1093 It is useful to write your sources."
1094 (and (assq attribute-name src
) t
))
1096 (defun* anything-attrset
(attribute-name value
&optional
(src (anything-get-current-source)))
1097 "Set the value of ATTRIBUTE-NAME of SRC (source) to VALUE.
1098 if SRC is omitted, use current source.
1099 It is useful to write your sources."
1100 (anything-aif (assq attribute-name src
)
1102 (setcdr src
(cons (cons attribute-name value
) (cdr src
))))
1105 ;; anything-set-source-filter
1107 ;; This function sets a filter for anything sources and it may be
1108 ;; called while anything is running. It can be used to toggle
1109 ;; displaying of sources dinamically. For example, additional keys
1110 ;; can be bound into `anything-map' to display only the file-related
1111 ;; results if there are too many matches from other sources and
1112 ;; you're after files only:
1114 ;; Shift+F shows only file results from some sources:
1116 ;; (define-key anything-map "F" 'anything-my-show-files-only)
1118 ;; (defun anything-my-show-files-only ()
1120 ;; (anything-set-source-filter '("File Name History"
1121 ;; "Files from Current Directory")))
1123 ;; Shift+A shows all results:
1125 ;; (define-key anything-map "A" 'anything-my-show-all)
1127 ;; (defun anything-my-show-all ()
1129 ;; (anything-set-source-filter nil))
1132 ;; Note that you have to prefix the functions with anything- prefix,
1133 ;; otherwise they won't be bound when Anything is used under
1134 ;; Iswitchb. The -my- part is added to avoid collisions with
1135 ;; existing Anything function names.
1137 (defun anything-set-source-filter (sources)
1138 "Sets the value of `anything-source-filter' and updates the list of results."
1139 (unless (and (listp sources
)
1140 (loop for name in sources always
(stringp name
)))
1141 (error "invalid data in `anything-set-source-filter': %S" sources
))
1142 (setq anything-source-filter sources
)
1143 (anything-log-eval anything-source-filter
)
1146 (defun anything-set-sources (sources &optional no-init no-update
)
1147 "Set `anything-sources' during `anything' invocation.
1148 If NO-INIT is non-nil, skip executing init functions of SOURCES.
1149 If NO-UPDATE is non-nil, skip executing `anything-update'."
1150 (with-current-buffer anything-buffer
1151 (setq anything-compiled-sources nil
1152 anything-sources sources
1153 anything-last-sources-local sources
)
1154 (anything-log-eval anything-compiled-sources anything-sources
))
1155 (unless no-init
(anything-funcall-foreach 'init
))
1156 (unless no-update
(anything-update)))
1158 (defvar anything-compile-source-functions
1159 '(anything-compile-source--type
1160 anything-compile-source--dummy
1161 anything-compile-source--disable-shortcuts
1162 anything-compile-source--candidates-in-buffer
)
1163 "Functions to compile elements of `anything-sources' (plug-in).")
1165 (defun anything-get-sources ()
1166 "Return compiled `anything-sources', which is memoized.
1171 `anything-type-attributes' are merged in.
1173 candidates, volatile and match attrubute are created.
1177 ((anything-action-window)
1180 (anything-compiled-sources)
1184 (setq anything-compiled-sources
1185 (anything-compile-sources
1186 anything-sources anything-compile-source-functions
))
1187 (anything-log-eval anything-compiled-sources
)))))
1189 (defun* anything-get-selection
(&optional
(buffer nil buffer-s
) (force-display-part))
1190 "Return the currently selected item or nil.
1191 if BUFFER is nil or unspecified, use anything-buffer as default value.
1192 If FORCE-DISPLAY-PART is non-nil, return the display string."
1193 (setq buffer
(if (and buffer buffer-s
) buffer anything-buffer
))
1194 (unless (anything-empty-buffer-p buffer
)
1195 (with-current-buffer buffer
1197 (or (and (not force-display-part
)
1198 (get-text-property (overlay-start
1199 anything-selection-overlay
)
1200 'anything-realvalue
))
1201 (let ((disp (buffer-substring-no-properties
1202 (overlay-start anything-selection-overlay
)
1203 (1- (overlay-end anything-selection-overlay
))))
1204 (source (anything-get-current-source)))
1205 (anything-aif (and (not force-display-part
)
1206 (assoc-default 'display-to-real source
))
1207 (anything-funcall-with-source source it disp
)
1209 (unless (equal selection
"")
1210 (anything-log-eval selection
)
1213 (defun anything-get-action ()
1214 "Return the associated action for the selected candidate.
1215 It is a function symbol (sole action) or list of (action-display . function)."
1216 (unless (anything-empty-buffer-p (anything-buffer-get))
1217 (anything-aif (anything-attr 'action-transformer
)
1218 (anything-composed-funcall-with-source
1219 (anything-get-current-source) it
1220 (anything-attr 'action
) (anything-get-selection))
1221 (anything-attr 'action
))))
1223 (defun anything-get-current-source ()
1224 "Return the source for the current selection / in init/candidates/action/candidate-transformer/filtered-candidate-transformer function."
1225 (declare (special source
))
1226 ;; The name `anything-get-current-source' should be used in init function etc.
1227 (if (and (boundp 'anything-source-name
) (stringp anything-source-name
))
1229 (with-current-buffer (anything-buffer-get)
1230 (or (get-text-property (point) 'anything-source
)
1232 ;; This goto-char shouldn't be necessary, but point is moved to
1233 ;; point-min somewhere else which shouldn't happen.
1234 (goto-char (overlay-start anything-selection-overlay
))
1235 (let* ((header-pos (or (anything-get-previous-header-pos)
1236 (anything-get-next-header-pos)))
1240 ;(message "No candidates")
1241 (return-from exit nil
))
1242 (goto-char header-pos
)
1243 (anything-current-line-contents))))
1244 (some (lambda (source)
1245 (if (equal (assoc-default 'name source
) source-name
)
1247 (anything-get-sources))))))))
1249 (defun anything-buffer-is-modified (buffer)
1250 "Return non-nil when BUFFER is modified since `anything' was invoked."
1251 (let* ((b (get-buffer buffer
))
1252 (key (concat (buffer-name b
) "/" (anything-attr 'name
)))
1253 (source-tick (or (gethash key anything-tick-hash
) 0))
1254 (buffer-tick (buffer-chars-modified-tick b
))
1255 (modifiedp (/= source-tick buffer-tick
)))
1256 (puthash key buffer-tick anything-tick-hash
)
1257 (anything-log-eval buffer modifiedp
)
1259 (defun anything-current-buffer-is-modified ()
1260 "Return non-nil when `anything-current-buffer' is modified since `anything' was invoked."
1261 (anything-buffer-is-modified anything-current-buffer
))
1263 (defvar anything-quit nil
)
1264 (defun anything-run-after-quit (function &rest args
)
1265 "Perform an action after quitting `anything'.
1266 The action is to call FUNCTION with arguments ARGS."
1267 (setq anything-quit t
)
1268 (anything-log-eval function args
)
1269 (apply 'run-with-idle-timer
0 nil function args
)
1270 (anything-exit-minibuffer))
1272 (defun define-anything-type-attribute (type definition
&optional doc
)
1273 "Register type attribute of TYPE as DEFINITION with DOC.
1274 DOC is displayed in `anything-type-attributes' docstring.
1276 Use this function is better than setting `anything-type-attributes' directly."
1277 (anything-add-type-attribute type definition
)
1278 (and doc
(anything-document-type-attribute type doc
))
1281 (defvaralias 'anything-attributes
'anything-additional-attributes
)
1282 (defvar anything-additional-attributes nil
1283 "List of all `anything' attributes.")
1284 (defun anything-document-attribute (attribute short-doc
&optional long-doc
)
1285 "Register ATTRIBUTE documentation introduced by plug-in.
1286 SHORT-DOC is displayed beside attribute name.
1287 LONG-DOC is displayed below attribute name and short documentation."
1289 (setq short-doc
(concat "(" short-doc
")"))
1290 (setq long-doc short-doc
1292 (add-to-list 'anything-additional-attributes attribute t
)
1293 (put attribute
'anything-attrdoc
1294 (concat "- " (symbol-name attribute
) " " short-doc
"\n\n" long-doc
"\n")))
1295 (put 'anything-document-attribute
'lisp-indent-function
2)
1297 (defun anything-require-at-least-version (version)
1298 "Output error message unless anything.el is older than VERSION.
1299 This is suitable for anything applications."
1300 (when (and (string= "1." (substring version
0 2))
1301 (string-match "1\.\\([0-9]+\\)" anything-version
)
1302 (< (string-to-number (match-string 1 anything-version
))
1303 (string-to-number (substring version
2))))
1304 (error "Please update anything.el!!
1306 M-x auto-install-batch anything
1308 You must have auto-install.el too.
1309 http://www.emacswiki.org/cgi-bin/wiki/download/auto-install.el
1312 (defun anything-interpret-value (value &optional source
)
1313 "interpret VALUE as variable, function or literal.
1314 If VALUE is a function, call it with no arguments and return the value.
1315 If SOURCE is `anything' source, `anything-source-name' is source name.
1317 If VALUE is a variable, return the value.
1319 If VALUE is a symbol, but it is not a function or a variable, cause an error.
1321 Otherwise, return VALUE itself."
1322 (cond ((and source
(functionp value
))
1323 (anything-funcall-with-source source value
))
1326 ((and (symbolp value
) (boundp value
))
1327 (symbol-value value
))
1329 (error "anything-interpret-value: Symbol must be a function or a variable"))
1333 (defun anything-once (function &rest args
)
1334 "Ensure FUNCTION with ARGS to be called once in `anything' session."
1335 (let ((spec (cons function args
)))
1336 (unless (member spec anything-once-called-functions
)
1337 (apply function args
)
1338 (push spec anything-once-called-functions
))))
1340 ;; (@* "Core: API helper")
1341 (defun anything-empty-buffer-p (&optional buffer
)
1342 (zerop (buffer-size (and buffer
(get-buffer buffer
)))))
1344 (defun anything-let-eval-varlist (varlist)
1345 (mapcar (lambda (pair)
1347 (cons (car pair
) (eval (cadr pair
)))
1350 (defun anything-let*-eval-varlist
(varlist)
1351 (let ((vars (mapcar (lambda (pair) (or (car-safe pair
) pair
)) varlist
)))
1353 ,@(mapcar (lambda (pair)
1355 `(setq ,(car pair
) ,(cadr pair
))
1358 (mapcar (lambda (v) (cons v
(symbol-value v
))) ',vars
)))))
1359 (defun anything-let-internal (binding bodyfunc
)
1360 "Evaluate BODYFUNC and Set BINDING to anything buffer-local variables.
1361 BINDING is a list of (VARNAME . VALUE) pair."
1362 (setq anything-let-variables binding
)
1365 (setq anything-let-variables nil
)))
1368 ;; (@* "Core: tools")
1369 (defun anything-current-line-contents ()
1370 "Current line strig without properties."
1371 (buffer-substring-no-properties (point-at-bol) (point-at-eol)))
1373 (defun anything-funcall-with-source (source func
&rest args
)
1374 "Call FUNC with ARGS with variable `anything-source-name' and `source' is bound.
1375 FUNC can be function list. Return the result of last function call."
1376 (let ((anything-source-name (assoc-default 'name source
))
1378 (anything-log-eval anything-source-name func args
)
1379 (dolist (func (if (functionp func
) (list func
) func
) result
)
1380 (setq result
(apply func args
)))))
1382 (defun anything-funcall-foreach (sym)
1383 "Call the sym function(s) for each source if any."
1384 (dolist (source (anything-get-sources))
1385 (anything-aif (assoc-default sym source
)
1386 (anything-funcall-with-source source it
))))
1388 (defun anything-normalize-sources (sources)
1389 "If SOURCES is only one source, make a list."
1390 (cond ((or (and sources
; avoid nil
1392 (and (listp sources
) (assq 'name sources
)))
1395 (t anything-sources
)))
1397 (defun anything-approximate-candidate-number ()
1398 "Approximate Number of candidates.
1399 It is used to check if candidate number is 0, 1, or 2+."
1400 (with-current-buffer anything-buffer
1401 (let ((lines (1- (line-number-at-pos (1- (point-max))))))
1405 (goto-char (point-min))
1407 (if (anything-pos-multiline-p)
1408 (if (search-forward anything-candidate-separator nil t
) 2 1)
1411 (defmacro with-anything-quittable
(&rest body
)
1412 `(let (inhibit-quit)
1415 (quit (setq anything-quit t
)
1418 (put 'with-anything-quittable
'lisp-indent-function
0)
1420 (defun anything-compose (arg-lst func-lst
)
1421 "Call each function in FUNC-LST with the arguments specified in ARG-LST.
1422 The result of each function will be the new `car' of ARG-LST.
1424 This function allows easy sequencing of transformer functions."
1425 (dolist (func func-lst
)
1426 (setcar arg-lst
(apply func arg-lst
)))
1429 (defun anything-composed-funcall-with-source (source funcs
&rest args
)
1430 (if (functionp funcs
)
1431 (apply 'anything-funcall-with-source source funcs args
)
1432 (apply 'anything-funcall-with-source
1433 source
(lambda (&rest args
) (anything-compose args funcs
)) args
)))
1435 (defun anything-new-timer (variable timer
)
1436 "Set new TIMER to VARIABLE. Old timer is cancelled."
1437 (anything-aif (symbol-value variable
)
1439 (set variable timer
))
1441 ;; (@* "Core: entry point")
1442 (defconst anything-argument-keys
1443 '(:sources
:input
:prompt
:resume
:preselect
:buffer
:keymap
))
1445 (defun anything (&rest plist
)
1446 "Select anything. In Lisp program, some optional arguments can be used.
1448 PLIST is a list like (:key1 val1 :key2 val2 ...) or
1449 (&optional sources input prompt resume preselect buffer keymap).
1451 Basic keywords are the following:
1455 Temporary value of `anything-sources'. It also accepts a
1456 symbol, interpreted as a variable of an anything source. It
1457 also accepts an alist representing an anything source, which is
1458 detected by (assq 'name ANY-SOURCES)
1462 Temporary value of `anything-pattern', ie. initial input of minibuffer.
1466 Prompt other than \"pattern: \".
1470 If t, Resurrect previously instance of `anything'. Skip the initialization.
1471 If 'noresume, this instance of `anything' cannot be resumed.
1475 Initially selected candidate. Specified by exact candidate or a regexp.
1476 Note that it is not working with delayed sources.
1480 `anything-buffer' instead of *anything*.
1484 `anything-map' for current `anything' session.
1487 Of course, conventional arguments are supported, the two are same.
1489 (anything :sources sources :input input :prompt prompt :resume resume
1490 :preselect preselect :buffer buffer :keymap keymap)
1491 (anything sources input prompt resume preselect buffer keymap)
1494 Other keywords are interpreted as local variables of this anything session.
1495 The `anything-' prefix can be omitted. For example,
1497 (anything :sources 'anything-c-source-buffers
1498 :buffer \"*buffers*\" :candidate-number-limit 10)
1500 means starting anything session with `anything-c-source-buffers'
1501 source in *buffers* buffer and set
1502 `anything-candidate-number-limit' to 10 as session local variable. "
1504 (if (keywordp (car plist
))
1505 (anything-let-internal
1506 (anything-parse-keys plist
)
1509 (mapcar (lambda (key) (plist-get plist key
))
1510 anything-argument-keys
))))
1511 (apply 'anything-internal plist
)))
1513 (defun* anything-resume
(&optional
(any-buffer anything-last-buffer
) buffer-pattern
(any-resume t
))
1514 "Resurrect previously invoked `anything'."
1516 (when (or current-prefix-arg buffer-pattern
)
1517 (setq any-buffer
(anything-resume-select-buffer buffer-pattern
)))
1518 (setq anything-compiled-sources nil
)
1520 (or (buffer-local-value 'anything-last-sources-local
(get-buffer any-buffer
))
1521 anything-last-sources anything-sources
)
1522 (buffer-local-value 'anything-input-local
(get-buffer any-buffer
))
1523 nil any-resume nil any-buffer
))
1525 ;;; rubikitch: experimental
1526 ;;; I use this and check it whether I am convenient.
1527 ;;; I may introduce an option to control the behavior.
1528 (defun* anything-resume-window-only
(&optional
(any-buffer anything-last-buffer
) buffer-pattern
)
1530 (anything-resume any-buffer buffer-pattern
'window-only
))
1533 (defun anything-at-point (&optional any-sources any-input any-prompt any-resume any-preselect any-buffer
)
1534 "Same as `anything' except when C-u is pressed, the initial input is the symbol at point."
1536 (anything any-sources
1537 (if current-prefix-arg
1538 (concat "\\b" (thing-at-point 'symbol
) "\\b"
1539 (if (featurep 'anything-match-plugin
) " " ""))
1541 any-prompt any-resume any-preselect any-buffer
))
1544 (defun anything-other-buffer (any-sources any-buffer
)
1545 "Simplified interface of `anything' with other `anything-buffer'"
1546 (anything any-sources nil nil nil nil any-buffer
))
1548 ;;; (@* "Core: entry point helper")
1549 (defun anything-internal (&optional any-sources any-input any-prompt any-resume any-preselect any-buffer any-keymap
)
1550 "Older interface of `anything'. It is called by `anything'."
1551 (anything-log "++++++++++++++++++++++++++++++++++++++++++++++++++++++++")
1552 (anything-log-eval any-prompt any-preselect any-buffer any-keymap
)
1555 (let ( ;; It is needed because `anything-source-name' is non-nil
1556 ;; when `anything' is invoked by action. Awful global scope.
1557 anything-source-name
1558 anything-in-persistent-action
1560 (case-fold-search t
)
1561 (anything-buffer (or any-buffer anything-buffer
))
1562 ;; cua-mode ; avoid error when region is selected
1564 (with-anything-restore-variables
1565 (anything-initialize-1 any-resume any-input any-sources
)
1566 (anything-display-buffer anything-buffer
)
1567 (anything-log "show prompt")
1569 (anything-read-pattern-maybe
1570 any-prompt any-input any-preselect any-resume any-keymap
)
1571 (anything-cleanup)))
1572 (prog1 (unless anything-quit
(anything-execute-selection-action-1))
1573 (anything-log "end session --------------------------------------------")))
1576 (anything-log "end session (quit) -------------------------------------")
1578 (anything-log-save-maybe)))
1582 (defun anything-parse-keys (keys)
1583 (loop for
(key value
&rest _
) on keys by
#'cddr
1584 for symname
= (substring (symbol-name key
) 1)
1585 for sym
= (intern (if (string-match "^anything-" symname
)
1587 (concat "anything-" symname
)))
1588 unless
(memq key anything-argument-keys
)
1589 collect
(cons sym value
)))
1591 (defun anything-resume-p (any-resume)
1592 "Whethre current anything session is resumed or not."
1593 (memq any-resume
'(t window-only
)))
1595 (defvar anything-buffers nil
1596 "All of `anything-buffer' in most recently used order.")
1597 (defun anything-initialize-1 (any-resume any-input any-sources
)
1598 "The real initialization of `anything'.
1600 This function name should be `anything-initialize', but anything
1601 extensions may advice `anything-initalize'. I cannot rename, sigh."
1602 (anything-log "start initialization: any-resume=%S any-input=%S" any-resume any-input
)
1603 (anything-frame/window-configuration
'save
)
1604 (setq anything-sources
(anything-normalize-sources any-sources
))
1605 (anything-log "sources = %S" anything-sources
)
1606 (anything-hooks 'setup
)
1607 (anything-current-position 'save
)
1608 (if (anything-resume-p any-resume
)
1609 (anything-initialize-overlays (anything-buffer-get))
1610 (anything-initialize))
1611 (unless (eq any-resume
'noresume
)
1612 (anything-recent-push anything-buffer
'anything-buffers
)
1613 (setq anything-last-buffer anything-buffer
))
1614 (when any-input
(setq anything-input any-input anything-pattern any-input
))
1615 (and (anything-resume-p any-resume
) (anything-funcall-foreach 'resume
))
1616 (anything-log "end initialization"))
1618 (defun anything-execute-selection-action-1 ()
1620 (anything-execute-selection-action)
1621 (anything-aif (get-buffer anything-action-buffer
)
1623 (anything-log-run-hook 'anything-after-action-hook
)))
1625 (defun anything-on-quit ()
1626 (setq minibuffer-history
(cons anything-input minibuffer-history
))
1627 (anything-current-position 'restore
))
1629 (defun anything-resume-select-buffer (input)
1630 (anything '(((name .
"Resume anything buffer")
1631 (candidates . anything-buffers
)
1632 (action . identity
)))
1633 input nil
'noresume nil
"*anything resume*"))
1635 (defun anything-recent-push (elt list-var
)
1636 "Add ELT to the value of LIST-VAR as most recently used value."
1637 (let ((m (member elt
(symbol-value list-var
))))
1638 (and m
(set list-var
(delq (car m
) (symbol-value list-var
))))
1639 (push elt
(symbol-value list-var
))))
1641 ;;; (@* "Core: Accessors")
1642 ;;; rubikitch: I love to create functions to control variables.
1643 (defvar anything-current-position nil
1644 "Cons of (point) and (window-start) when `anything' is invoked.
1645 It is needed because restoring position when `anything' is keyboard-quitted.")
1646 (defun anything-current-position (save-or-restore)
1647 (case save-or-restore
1649 (setq anything-current-position
(cons (point) (window-start))))
1651 (goto-char (car anything-current-position
))
1652 (set-window-start (selected-window) (cdr anything-current-position
)))))
1654 ;;; FIXME I want to remove them. But anything-iswitchb uses them.
1655 (defun anything-current-frame/window-configuration
()
1656 (funcall (cdr anything-save-configuration-functions
)))
1657 (defun anything-set-frame/window-configuration
(conf)
1658 (funcall (car anything-save-configuration-functions
) conf
))
1661 (defun anything-frame/window-configuration
(save-or-restore)
1662 (anything-log-eval anything-save-configuration-functions
)
1663 (case save-or-restore
1664 (save (setq conf
(funcall (cdr anything-save-configuration-functions
))))
1665 (restore (funcall (car anything-save-configuration-functions
) conf
)))))
1667 ;; (@* "Core: Display *anything* buffer")
1668 (defun anything-display-buffer (buf)
1669 "Display *anything* buffer."
1670 (funcall (with-current-buffer buf anything-display-function
) buf
))
1672 (defun anything-default-display-buffer (buf)
1673 (funcall (if anything-samewindow
'switch-to-buffer
'pop-to-buffer
) buf
))
1675 ;; (@* "Core: initialize")
1676 (defun anything-initialize ()
1677 "Initialize anything settings and set up the anything buffer."
1678 (anything-log-run-hook 'anything-before-initialize-hook
)
1679 (setq anything-once-called-functions nil
)
1680 (setq anything-delayed-init-executed nil
)
1681 (setq anything-current-buffer
(current-buffer))
1682 (setq anything-buffer-file-name buffer-file-name
)
1683 (setq anything-issued-errors nil
)
1684 (setq anything-compiled-sources nil
)
1685 (setq anything-saved-current-source nil
)
1686 ;; Call the init function for sources where appropriate
1687 (anything-funcall-foreach 'init
)
1689 (setq anything-pattern
"")
1690 (setq anything-input
"")
1691 (setq anything-candidate-cache nil
)
1692 (setq anything-last-sources anything-sources
)
1694 (anything-create-anything-buffer)
1695 (anything-log-run-hook 'anything-after-initialize-hook
))
1697 (defun anything-read-pattern-maybe (any-prompt any-input any-preselect any-resume any-keymap
)
1698 (if (anything-resume-p any-resume
)
1699 (anything-mark-current-line)
1701 (select-frame-set-input-focus (window-frame (minibuffer-window)))
1702 (anything-preselect any-preselect
)
1703 (let ((minibuffer-local-map
1704 (with-current-buffer (anything-buffer-get)
1705 (and any-keymap
(set (make-local-variable 'anything-map
) any-keymap
))
1707 (anything-log-eval (anything-approximate-candidate-number)
1708 anything-execute-action-at-once-if-one
1709 anything-quit-if-no-candidate
)
1710 (cond ((and anything-execute-action-at-once-if-one
1711 (= (anything-approximate-candidate-number) 1))
1713 ((and anything-quit-if-no-candidate
1714 (= (anything-approximate-candidate-number) 0))
1715 (setq anything-quit t
)
1716 (and (functionp anything-quit-if-no-candidate
)
1717 (funcall anything-quit-if-no-candidate
)))
1719 (read-string (or any-prompt
"pattern: ") any-input
)))))
1721 (defun anything-create-anything-buffer (&optional test-mode
)
1722 "Create newly created `anything-buffer'.
1723 If TEST-MODE is non-nil, clear `anything-candidate-cache'."
1725 (setq anything-candidate-cache nil
))
1726 (with-current-buffer (get-buffer-create anything-buffer
)
1727 (anything-log "kill local variables: %S" (buffer-local-variables))
1728 (kill-all-local-variables)
1729 (set (make-local-variable 'inhibit-read-only
) t
)
1730 (buffer-disable-undo)
1732 (set (make-local-variable 'inhibit-read-only
) t
)
1733 (set (make-local-variable 'anything-last-sources-local
) anything-sources
)
1734 (set (make-local-variable 'anything-follow-mode
) nil
)
1735 (set (make-local-variable 'anything-display-function
) anything-display-function
)
1736 (anything-initialize-persistent-action)
1737 (anything-log-eval anything-display-function anything-let-variables
)
1738 (loop for
(var . val
) in anything-let-variables
1739 do
(set (make-local-variable var
) val
))
1741 (setq cursor-type nil
)
1742 (setq mode-name
"Anything"))
1743 (anything-initialize-overlays anything-buffer
)
1744 (get-buffer anything-buffer
))
1746 (defun anything-initialize-overlays (buffer)
1747 (anything-log "overlay setup")
1748 (if anything-selection-overlay
1749 ;; make sure the overlay belongs to the anything buffer if
1750 ;; it's newly created
1751 (move-overlay anything-selection-overlay
(point-min) (point-min)
1752 (get-buffer buffer
))
1754 (setq anything-selection-overlay
1755 (make-overlay (point-min) (point-min) (get-buffer buffer
)))
1756 (overlay-put anything-selection-overlay
'face anything-selection-face
))
1758 (cond (anything-enable-shortcuts
1759 (setq anything-shortcut-keys
1760 (assoc-default anything-enable-shortcuts anything-shortcut-keys-alist
))
1761 (unless anything-digit-overlays
1762 (setq anything-digit-overlays
1763 (loop for key across anything-shortcut-keys
1764 for overlay
= (make-overlay (point-min) (point-min)
1765 (get-buffer buffer
))
1766 do
(overlay-put overlay
'before-string
1767 (format "%s - " (upcase (make-string 1 key
))))
1769 (anything-digit-overlays
1770 (mapc 'delete-overlay anything-digit-overlays
)
1771 (setq anything-digit-overlays nil
))))
1773 (defun anything-hooks (setup-or-cleanup)
1774 (let ((hooks '((deferred-action-list anything-check-minibuffer-input
)
1775 (minibuffer-setup-hook anything-print-error-messages
))))
1776 (if (eq setup-or-cleanup
'setup
)
1777 (dolist (args hooks
) (apply 'add-hook args
))
1778 (dolist (args (reverse hooks
)) (apply 'remove-hook args
)))))
1780 ;; (@* "Core: clean up")
1782 (defun anything-cleanup ()
1783 "Clean up the mess."
1784 (anything-log "start cleanup")
1785 (with-current-buffer anything-buffer
1786 (setq cursor-type t
))
1787 (bury-buffer anything-buffer
)
1788 (anything-funcall-foreach 'cleanup
)
1789 (anything-new-timer 'anything-check-minibuffer-input-timer nil
)
1790 (anything-kill-async-processes)
1791 (anything-log-run-hook 'anything-cleanup-hook
)
1792 (anything-hooks 'cleanup
)
1793 (anything-frame/window-configuration
'restore
))
1795 ;; (@* "Core: input handling")
1796 (defun anything-check-minibuffer-input ()
1797 "Extract input string from the minibuffer and check if it needs
1799 (let ((delay (with-current-buffer anything-buffer anything-input-idle-delay
)))
1800 (if (or (not delay
) (anything-action-window))
1801 (anything-check-minibuffer-input-1)
1803 'anything-check-minibuffer-input-timer
1804 (run-with-idle-timer delay nil
'anything-check-minibuffer-input-1
)))))
1806 (defun anything-check-minibuffer-input-1 ()
1807 (with-anything-quittable
1808 (with-selected-window (minibuffer-window)
1809 (anything-check-new-input (minibuffer-contents)))))
1811 (defun anything-check-new-input (input)
1812 "Check input string and update the anything buffer if
1814 (unless (equal input anything-pattern
)
1815 (setq anything-pattern input
)
1816 (unless (anything-action-window)
1817 (setq anything-input anything-pattern
))
1818 (anything-log-eval anything-pattern anything-input
)
1821 ;; (@* "Core: source compiler")
1822 (defvar anything-compile-source-functions-default anything-compile-source-functions
1823 "Plug-ins this file provides.")
1824 (defun anything-compile-sources (sources funcs
)
1825 "Compile sources (`anything-sources') with funcs (`anything-compile-source-functions').
1826 Anything plug-ins are realized by this function."
1829 (loop with source
= (if (listp source
) source
(symbol-value source
))
1831 do
(setq source
(funcall f source
))
1832 finally
(return source
)))
1835 ;; (@* "Core: plug-in attribute documentation hack")
1837 ;; `anything-document-attribute' is public API.
1838 (defadvice documentation-property
(after anything-document-attribute activate
)
1839 "Hack to display plug-in attributes' documentation as `anything-sources' docstring."
1840 (when (eq symbol
'anything-sources
)
1841 (setq ad-return-value
1842 (concat ad-return-value
"\n"
1843 (mapconcat (lambda (sym) (get sym
'anything-attrdoc
))
1844 anything-additional-attributes
1846 ;; (describe-variable 'anything-sources)
1847 ;; (documentation-property 'anything-sources 'variable-documentation)
1848 ;; (progn (ad-disable-advice 'documentation-property 'after 'anything-document-attribute) (ad-update 'documentation-property))
1850 ;; (@* "Core: all candidates")
1851 (defun anything-process-delayed-init (source)
1852 (let ((name (assoc-default 'name source
)))
1853 (unless (member name anything-delayed-init-executed
)
1854 (anything-aif (assoc-default 'delayed-init source
)
1855 (with-current-buffer anything-current-buffer
1856 (anything-funcall-with-source source it
)
1857 (dolist (f (if (functionp it
) (list it
) it
))
1858 (add-to-list 'anything-delayed-init-executed name
)))))))
1860 (defun anything-get-candidates (source)
1861 "Retrieve and return the list of candidates from
1863 (anything-process-delayed-init source
)
1864 (let* ((candidate-source (assoc-default 'candidates source
))
1865 (type-error (lambda ()
1866 (error (concat "Candidates must either be a function, "
1867 " a variable or a list: %s")
1869 (candidates (condition-case err
1870 (anything-interpret-value candidate-source source
)
1871 (error (funcall type-error
)))))
1872 (cond ((processp candidates
) candidates
)
1873 ((listp candidates
) (anything-transform-candidates candidates source
))
1874 (t (funcall type-error
)))))
1877 (defun anything-get-cached-candidates (source)
1878 "Return the cached value of candidates for SOURCE.
1879 Cache the candidates if there is not yet a cached value."
1880 (let* ((name (assoc-default 'name source
))
1881 (candidate-cache (assoc name anything-candidate-cache
)))
1882 (cond (candidate-cache
1883 (anything-log "use cached candidates")
1884 (cdr candidate-cache
))
1886 (anything-log "calculate candidates")
1887 (let ((candidates (anything-get-candidates source
)))
1888 (cond ((processp candidates
)
1889 (push (cons candidates
1891 (list (cons 'item-count
0)
1892 (cons 'incomplete-line
""))))
1893 anything-async-processes
)
1894 (set-process-filter candidates
'anything-output-filter
)
1895 (setq candidates nil
))
1896 ((not (assoc 'volatile source
))
1897 (setq candidate-cache
(cons name candidates
))
1898 (push candidate-cache anything-candidate-cache
)))
1901 ;;; (@* "Core: candidate transformers")
1902 (defun anything-process-candidate-transformer (candidates source
)
1903 (anything-aif (assoc-default 'candidate-transformer source
)
1904 (anything-composed-funcall-with-source source it candidates
)
1906 (defun anything-process-filtered-candidate-transformer (candidates source
)
1907 (anything-aif (assoc-default 'filtered-candidate-transformer source
)
1908 (anything-composed-funcall-with-source source it candidates source
)
1910 (defun anything-process-filtered-candidate-transformer-maybe (candidates source process-p
)
1912 (anything-process-filtered-candidate-transformer candidates source
)
1914 (defun anything-process-real-to-display (candidates source
)
1915 (anything-aif (assoc-default 'real-to-display source
)
1916 (setq candidates
(anything-funcall-with-source
1920 ;; override DISPLAY from candidate-transformer
1921 (cons (funcall it
(cdr cand_
)) (cdr cand_
))
1922 (cons (funcall it cand_
) cand_
)))
1925 (defun anything-transform-candidates (candidates source
&optional process-p
)
1926 "Transform CANDIDATES according to candidate transformers."
1927 (anything-process-real-to-display
1928 (anything-process-filtered-candidate-transformer-maybe
1929 (anything-process-candidate-transformer candidates source
) source process-p
)
1933 ;; (@* "Core: narrowing candidates")
1934 (defun anything-candidate-number-limit (source)
1935 "`anything-candidate-number-limit' variable may be overridden by SOURCE.
1936 If (candidate-number-limit) is in SOURCE, show all candidates in SOURCE,
1937 ie. cancel the effect of `anything-candidate-number-limit'."
1938 (anything-aif (assq 'candidate-number-limit source
)
1939 (or (cdr it
) 99999999)
1940 (or anything-candidate-number-limit
99999999)))
1942 (defconst anything-default-match-functions
1943 (list (lambda (candidate)
1944 (string-match anything-pattern candidate
))))
1946 (defun anything-compute-matches (source)
1947 "Compute matches from SOURCE according to its settings."
1949 (anything-compute-matches-internal source
)
1951 (anything-compute-matches-internal source
)
1952 (error (anything-log-error
1953 "anything-compute-matches: error when processing source: %s"
1954 (assoc-default 'name source
))
1957 (defun anything-candidate-get-display (candidate)
1958 "Get display part (searched) from CANDIDATE.
1959 CANDIDATE is a string, a symbol, or (DISPLAY . REAL) cons cell."
1960 (format "%s" (or (car-safe candidate
) candidate
)))
1962 (defun anything-process-pattern-transformer (pattern source
)
1963 (anything-aif (assoc-default 'pattern-transformer source
)
1964 (anything-composed-funcall-with-source source it pattern
)
1967 (defun anything-match-functions (source)
1968 (or (assoc-default 'match source
)
1969 anything-default-match-functions
))
1971 (defmacro anything-accumulate-candidates-internal
(cand newmatches hash item-count limit
)
1972 "INTERNAL: add CAND (ITEM-COUNT th match) into NEWMATCHES.
1973 Use HASH to uniq NEWMATCHES.
1974 if ITEM-COUNT reaches LIMIT, exit from inner loop."
1975 `(unless (gethash ,cand
,hash
)
1976 (puthash ,cand t
,hash
)
1977 (push ,cand
,newmatches
)
1979 (when (= ,item-count
,limit
)
1983 (defun anything-take-first-elements (seq n
)
1984 (if (> (length seq
) n
)
1985 (setq seq
(subseq seq
0 n
))
1988 (defun anything-match-from-candidates (cands matchfns limit
)
1991 (let ((item-count 0) exit
)
1992 (clrhash anything-match-hash
)
1993 (dolist (match matchfns
)
1995 (dolist (candidate cands
)
1996 (when (funcall match
(anything-candidate-get-display candidate
))
1997 (anything-accumulate-candidates-internal
1998 candidate newmatches anything-match-hash item-count limit
)))
1999 (setq matches
(append matches
(reverse newmatches
)))
2000 (if exit
(return)))))
2001 (invalid-regexp (setq matches nil
)))
2004 (defun anything-compute-matches-internal (source)
2005 (let ((matchfns (anything-match-functions source
))
2006 (anything-source-name (assoc-default 'name source
))
2007 (limit (anything-candidate-number-limit source
))
2008 (anything-pattern (anything-process-pattern-transformer
2009 anything-pattern source
)))
2010 (anything-process-filtered-candidate-transformer
2011 (if (or (equal anything-pattern
"") (equal matchfns
'(identity)))
2012 (anything-take-first-elements
2013 (anything-get-cached-candidates source
) limit
)
2014 (anything-match-from-candidates
2015 (anything-get-cached-candidates source
) matchfns limit
))
2018 ;; (anything '(((name . "error")(candidates . (lambda () (hage))) (action . identity))))
2020 (defun anything-process-source (source)
2021 "Display matches from SOURCE according to its settings."
2022 (anything-log-eval (assoc-default 'name source
))
2023 (if (assq 'direct-insert-match source
) ;experimental
2024 (anything-process-source--direct-insert-match source
)
2025 (let ((matches (anything-compute-matches source
)))
2027 (when anything-test-mode
2028 (setq anything-test-candidate-list
2029 `(,@anything-test-candidate-list
2030 (,(assoc-default 'name source
)
2032 (anything-insert-header-from-source source
)
2033 (if (not (assq 'multiline source
))
2034 (mapc 'anything-insert-match-with-digit-overlay matches
)
2035 (let ((start (point)) separate
)
2036 (dolist (match matches
)
2038 (anything-insert-candidate-separator)
2040 (anything-insert-match-with-digit-overlay match
))
2041 (put-text-property start
(point) 'anything-multiline t
)))))))
2043 (defun anything-insert-match-with-digit-overlay (match)
2044 (declare (special source
))
2045 (anything-put-digit-overlay-maybe)
2046 (anything-insert-match match
'insert source
))
2048 (defun anything-put-digit-overlay-maybe ()
2049 (when (and anything-enable-shortcuts
2050 (not (eq anything-digit-shortcut-count
2051 (length anything-digit-overlays
))))
2052 (move-overlay (nth anything-digit-shortcut-count
2053 anything-digit-overlays
)
2056 (incf anything-digit-shortcut-count
)))
2058 (defun anything-process-source--direct-insert-match (source)
2059 "[EXPERIMENTAL] Insert candidates from `anything-candidate-buffer'"
2060 (anything-log-eval (assoc-default 'name source
))
2061 (let ((anything-source-name (assoc-default 'name source
))
2063 (funcall (assoc-default 'candidates source
))
2064 (setq content-buf
(anything-candidate-buffer))
2065 (unless (anything-empty-buffer-p content-buf
)
2066 (anything-insert-header-from-source source
)
2067 (insert-buffer-substring content-buf
)
2068 ;; TODO call anything-put-digit-overlay-maybe with loop
2071 (defun anything-process-delayed-sources (delayed-sources)
2072 "Process delayed sources if the user is idle for
2073 `anything-idle-delay' seconds."
2074 (with-anything-quittable
2075 (anything-log-eval (mapcar (lambda (s) (assoc-default 'name s
)) delayed-sources
))
2076 (with-current-buffer anything-buffer
2078 (goto-char (point-max))
2079 (mapc 'anything-process-source delayed-sources
)
2080 (when (and (not (anything-empty-buffer-p))
2082 (= (overlay-start anything-selection-overlay
)
2083 (overlay-end anything-selection-overlay
)))
2084 (goto-char (point-min))
2085 (anything-next-line)))
2087 (goto-char (point-min))
2088 (anything-log-run-hook 'anything-update-hook
))
2089 (anything-maybe-fit-frame))))
2091 ;; (@* "Core: *anything* buffer contents")
2092 (defvar anything-input-local nil
)
2093 (defvar anything-process-delayed-sources-timer nil
)
2094 (defun anything-update ()
2095 "Update the list of matches in the anything buffer according to
2096 the current pattern."
2097 (anything-log "start update")
2098 (setq anything-digit-shortcut-count
0)
2099 (anything-kill-async-processes)
2100 (with-current-buffer (anything-buffer-get)
2101 (set (make-local-variable 'anything-input-local
) anything-pattern
)
2103 (when anything-enable-shortcuts
2104 (mapc 'delete-overlay anything-digit-overlays
))
2105 (let (delayed-sources)
2107 (setq delayed-sources
2108 (loop for source in
(remove-if-not 'anything-update-source-p
2109 (anything-get-sources))
2110 if
(anything-delayed-source-p source
)
2112 else do
(anything-process-source source
)))
2114 (mapcar (lambda (s) (assoc-default 'name s
)) delayed-sources
))
2115 (anything-update-move-first-line)
2116 (if anything-test-mode
2117 (mapc 'anything-process-source delayed-sources
)
2118 (anything-maybe-fit-frame)
2119 (when delayed-sources
2121 'anything-process-delayed-sources-timer
2122 (run-with-idle-timer
2123 anything-idle-delay nil
2124 'anything-process-delayed-sources delayed-sources
)))
2125 ;; FIXME I want to execute anything-after-update-hook
2126 ;; AFTER processing delayed sources
2127 (anything-log-run-hook 'anything-after-update-hook
))
2128 (anything-log "end update")))))
2130 (defun anything-update-source-p (source)
2131 (and (or (not anything-source-filter
)
2132 (member (assoc-default 'name source
) anything-source-filter
))
2133 (>= (length anything-pattern
)
2134 (anything-aif (assoc 'requires-pattern source
)
2137 (defun anything-delayed-source-p (source)
2138 (or (assoc 'delayed source
)
2139 (and anything-quick-update
2140 (< (window-height (get-buffer-window (current-buffer)))
2141 (line-number-at-pos (point-max))))))
2143 (defun anything-update-move-first-line ()
2144 (goto-char (point-min))
2145 (save-excursion (anything-log-run-hook 'anything-update-hook
))
2146 (anything-next-line))
2148 (defun anything-force-update ()
2149 "Recalculate and update candidates.
2150 If current source has `update' attribute, a function without argument, call it before update."
2152 (let ((source (anything-get-current-source)))
2154 (anything-force-update--reinit source
)
2155 (anything-erase-message)
2156 (mapc 'anything-force-update--reinit
(anything-get-sources)))
2157 (let ((selection (anything-get-selection nil t
)))
2159 (anything-keep-selection source selection
))))
2161 (defun anything-force-update--reinit (source)
2162 (anything-aif (anything-funcall-with-source source
'anything-candidate-buffer
)
2164 (dolist (attr '(update init
))
2165 (anything-aif (assoc-default attr source
)
2166 (anything-funcall-with-source source it
)))
2167 (anything-remove-candidate-cache source
))
2169 (defun anything-erase-message ()
2172 (defun anything-keep-selection (source selection
)
2173 (when (and source selection
)
2174 (with-anything-window
2175 (anything-goto-source source
)
2176 (forward-char -
1) ;back to \n
2177 (if (search-forward (concat "\n" selection
"\n") nil t
)
2179 (goto-char (point-min))
2181 (anything-mark-current-line))))
2183 (defun anything-remove-candidate-cache (source)
2184 (setq anything-candidate-cache
2185 (delete (assoc (assoc-default 'name source
) anything-candidate-cache
)
2186 anything-candidate-cache
)))
2188 (defun anything-insert-match (match insert-function source
)
2189 "Insert MATCH into the anything buffer. If MATCH is a list then
2190 insert the string inteneded to appear on the display and store
2191 the real value in a text property."
2192 (let ((start (point-at-bol (point)))
2193 (string (or (car-safe match
) match
))
2194 (realvalue (cdr-safe match
)))
2195 (when (symbolp string
) (setq string
(symbol-name string
)))
2196 (when (stringp string
)
2197 (funcall insert-function string
)
2198 ;; Some sources with candidates-in-buffer have already added
2199 ;; 'anything-realvalue property when creating candidate buffer.
2200 (unless (get-text-property start
'anything-realvalue
)
2202 (put-text-property start
(point-at-eol)
2203 'anything-realvalue realvalue
)))
2204 (when anything-source-in-each-line-flag
2205 (put-text-property start
(point-at-eol) 'anything-source source
))
2206 (funcall insert-function
"\n"))))
2208 (defun anything-insert-header-from-source (source)
2209 (let ((name (assoc-default 'name source
)))
2210 (anything-insert-header
2212 (anything-aif (assoc-default 'header-name source
)
2213 (anything-funcall-with-source source it name
)))))
2215 (defun anything-insert-header (name &optional display-string
)
2216 "Insert header of source NAME into the anything buffer."
2218 (let ((start (point)))
2220 (put-text-property start
(point) 'anything-header-separator t
)))
2222 (let ((start (point)))
2224 (put-text-property (point-at-bol)
2225 (point-at-eol) 'anything-header t
)
2226 (when display-string
2227 (overlay-put (make-overlay (point-at-bol) (point-at-eol))
2228 'display display-string
))
2230 (put-text-property start
(point) 'face anything-header-face
)))
2233 (defun anything-insert-candidate-separator ()
2234 "Insert separator of candidates into the anything buffer."
2235 (insert anything-candidate-separator
)
2236 (put-text-property (point-at-bol)
2237 (point-at-eol) 'anything-candidate-separator t
)
2243 ;; (@* "Core: async process")
2244 (defun anything-output-filter (process string
)
2245 "Process output from PROCESS."
2246 (anything-output-filter-1 (assoc process anything-async-processes
) string
))
2248 (defun anything-output-filter-1 (process-assoc string
)
2249 (anything-log-eval string
)
2250 (with-current-buffer anything-buffer
2251 (let ((source (cdr process-assoc
)))
2253 (anything-aif (assoc-default 'insertion-marker source
)
2255 (goto-char (point-max))
2256 (anything-insert-header-from-source source
)
2257 (setcdr process-assoc
2258 (append source
`((insertion-marker .
,(point-marker))))))
2259 (anything-output-filter--process-source
2260 (car process-assoc
) string source
2261 (anything-candidate-number-limit source
))))
2262 (anything-output-filter--post-process)))
2264 (defun anything-output-filter--process-source (process string source limit
)
2265 (dolist (candidate (anything-transform-candidates
2266 (anything-output-filter--collect-candidates
2267 (split-string string
"\n")
2268 (assoc 'incomplete-line source
))
2270 (if (not (assq 'multiline source
))
2271 (anything-insert-match candidate
'insert-before-markers source
)
2272 (let ((start (point)))
2273 (anything-insert-candidate-separator)
2274 (anything-insert-match candidate
'insert-before-markers source
)
2275 (put-text-property start
(point) 'anything-multiline t
)))
2276 (incf (cdr (assoc 'item-count source
)))
2277 (when (>= (assoc-default 'item-count source
) limit
)
2278 (anything-kill-async-process process
)
2281 (defun anything-output-filter--collect-candidates (lines incomplete-line-info
)
2282 (anything-log-eval (cdr incomplete-line-info
))
2284 (loop for line in lines collect
2285 (if (cdr incomplete-line-info
)
2287 (concat (cdr incomplete-line-info
) line
)
2288 (setcdr incomplete-line-info nil
))
2290 finally
(setcdr incomplete-line-info line
))))
2292 (defun anything-output-filter--post-process ()
2293 (anything-maybe-fit-frame)
2294 (anything-log-run-hook 'anything-update-hook
)
2295 (anything-aif (get-buffer-window anything-buffer
'visible
)
2296 (save-selected-window
2298 (anything-skip-noncandidate-line 'next
)
2299 (anything-mark-current-line))))
2302 (defun anything-kill-async-processes ()
2303 "Kill all known asynchronous processes according to
2304 `anything-async-processes'."
2305 "Kill locate process."
2306 (mapc 'anything-kill-async-process
(mapcar 'car anything-async-processes
))
2307 (setq anything-async-processes nil
))
2310 (defun anything-kill-async-process (process)
2311 "Kill PROCESS and detach the associated functions."
2312 (set-process-filter process nil
)
2313 (delete-process process
))
2316 ;; (@* "Core: action")
2317 (defun anything-execute-selection-action (&optional selection action preserve-saved-action
)
2318 "If a candidate was selected then perform the associated
2320 (anything-log "executing action")
2321 (setq action
(anything-get-default-action
2323 anything-saved-action
2324 (if (get-buffer anything-action-buffer
)
2325 (anything-get-selection anything-action-buffer
)
2326 (anything-get-action)))))
2327 (let ((source (or anything-saved-current-source
(anything-get-current-source))))
2328 (setq selection
(or selection
2329 (anything-get-selection)
2330 (and (assoc 'accept-empty source
) "")))
2331 (unless preserve-saved-action
(setq anything-saved-action nil
))
2332 (if (and selection action
)
2333 (anything-funcall-with-source
2335 (anything-coerce-selection selection source
)))))
2337 (defun anything-coerce-selection (selection source
)
2338 "Coerce source with coerce function."
2339 (anything-aif (assoc-default 'coerce source
)
2340 (anything-funcall-with-source source it selection
)
2343 (defun anything-get-default-action (action)
2344 (if (and (listp action
) (not (functionp action
)))
2348 (defun anything-select-action ()
2349 "Select an action for the currently selected candidate.
2350 If action buffer is selected, back to the anything buffer."
2352 (cond ((get-buffer-window anything-action-buffer
'visible
)
2353 (set-window-buffer (get-buffer-window anything-action-buffer
)
2355 (kill-buffer anything-action-buffer
)
2356 (anything-set-pattern anything-input
'noupdate
))
2358 (setq anything-saved-selection
(anything-get-selection))
2359 (unless anything-saved-selection
2360 (error "Nothing is selected."))
2361 (setq anything-saved-current-source
(anything-get-current-source))
2362 (let ((actions (anything-get-action)))
2363 (if (functionp actions
)
2364 (message "Sole action: %s" actions
)
2365 (anything-show-action-buffer actions
)
2366 (anything-delete-minibuffer-contents)
2367 (setq anything-pattern
'dummy
) ; so that it differs from the previous one
2368 (anything-check-minibuffer-input))))))
2370 (defun anything-show-action-buffer (actions)
2371 (with-current-buffer (get-buffer-create anything-action-buffer
)
2373 (buffer-disable-undo)
2374 (set-window-buffer (get-buffer-window anything-buffer
) anything-action-buffer
)
2375 (set (make-local-variable 'anything-sources
)
2376 `(((name .
"Actions")
2378 (candidates .
,actions
)
2379 (candidate-number-limit))))
2380 (set (make-local-variable 'anything-source-filter
) nil
)
2381 (set (make-local-variable 'anything-selection-overlay
) nil
)
2382 (set (make-local-variable 'anything-digit-overlays
) nil
)
2383 (anything-initialize-overlays anything-action-buffer
)))
2385 ;; (@* "Core: selection")
2386 (defun anything-move-selection-common (move-func unit direction
)
2387 "Move the selection marker to a new position determined by
2388 UNIT and DIRECTION."
2389 (unless (or (anything-empty-buffer-p (anything-buffer-get))
2390 (not (anything-window)))
2391 (with-anything-window
2393 (anything-skip-noncandidate-line direction
)
2394 (anything-display-source-at-screen-top-maybe unit
)
2395 (when (anything-get-previous-header-pos)
2396 (anything-mark-current-line))
2397 (anything-display-mode-line (anything-get-current-source)))))
2399 (defun anything-display-source-at-screen-top-maybe (unit)
2400 (when (and anything-display-source-at-screen-top
(eq unit
'source
))
2401 (set-window-start (selected-window)
2402 (save-excursion (forward-line -
1) (point)))))
2404 (defun anything-skip-noncandidate-line (direction)
2405 (anything-skip-header-and-separator-line direction
)
2406 (and (bobp) (forward-line 1)) ;skip first header
2407 (and (eobp) (forward-line -
1)) ;avoid last empty line
2410 (defun anything-skip-header-and-separator-line (direction)
2411 (while (and (not (bobp))
2412 (or (anything-pos-header-line-p)
2413 (anything-pos-candidate-separator-p)))
2414 (forward-line (if (and (eq direction
'previous
)
2415 (not (eq (point-at-bol) (point-min))))
2419 (defvar anything-mode-line-string-real nil
)
2420 (defun anything-display-mode-line (source)
2421 (set (make-local-variable 'anything-mode-line-string
)
2422 (anything-interpret-value (or (assoc-default 'mode-line source
)
2423 (default-value 'anything-mode-line-string
))
2425 (if anything-mode-line-string
2426 (setq mode-line-format
2427 '(" " mode-line-buffer-identification
" "
2428 (line-number-mode "%l") " " (anything-follow-mode "(F)")
2429 " " anything-mode-line-string-real
"-%-")
2430 anything-mode-line-string-real
2431 (substitute-command-keys anything-mode-line-string
))
2432 (setq mode-line-format
2433 (default-value 'mode-line-format
)))
2434 (setq header-line-format
2435 (anything-interpret-value (assoc-default 'header-line source
) source
)))
2437 (defun anything-previous-line ()
2438 "Move selection to the previous line."
2440 (anything-move-selection-common
2442 (if (not (anything-pos-multiline-p))
2443 (forward-line -
1) ;double forward-line is meaningful
2444 (forward-line -
1) ;because evaluation order is important
2445 (anything-skip-header-and-separator-line 'previous
)
2446 (let ((header-pos (anything-get-previous-header-pos))
2447 (separator-pos (anything-get-previous-candidate-separator-pos)))
2449 (goto-char (if (or (null separator-pos
) (< separator-pos header-pos
))
2450 header-pos
; first candidate
2452 (forward-line 1)))))
2455 (defun anything-next-line ()
2456 "Move selection to the next line."
2458 (anything-move-selection-common
2460 (if (not (anything-pos-multiline-p))
2462 (let ((header-pos (anything-get-next-header-pos))
2463 (separator-pos (anything-get-next-candidate-separator-pos)))
2464 (cond ((and separator-pos
2465 (or (null header-pos
) (< separator-pos header-pos
)))
2466 (goto-char separator-pos
))
2468 (goto-char header-pos
))))))
2471 (defun anything-previous-page ()
2472 "Move selection back with a pageful."
2474 (anything-move-selection-common
2478 (beginning-of-buffer (goto-char (point-min)))))
2481 (defun anything-next-page ()
2482 "Move selection forward with a pageful."
2484 (anything-move-selection-common
2488 (end-of-buffer (goto-char (point-max)))))
2491 (defun anything-beginning-of-buffer ()
2492 "Move selection at the top."
2494 (anything-move-selection-common (lambda () (goto-char (point-min)))
2497 (defun anything-end-of-buffer ()
2498 "Move selection at the bottom."
2500 (anything-move-selection-common (lambda () (goto-char (point-max)))
2503 (defun anything-previous-source ()
2504 "Move selection to the previous source."
2506 (anything-move-selection-common
2510 (goto-char (point-max))
2511 (anything-skip-header-and-separator-line 'previous
))
2512 (goto-char (anything-get-previous-header-pos))
2516 (defun anything-next-source ()
2517 "Move selection to the next source."
2519 (anything-move-selection-common
2520 (lambda () (goto-char (or (anything-get-next-header-pos) (point-min))))
2523 (defun anything-goto-source (source-or-name)
2524 "Move the selection to the source (SOURCE-OR-NAME)."
2525 (anything-move-selection-common
2527 (goto-char (point-min))
2528 (let ((name (if (stringp source-or-name
) source-or-name
2529 (assoc-default 'name source-or-name
))))
2531 (while (not (string= name
(anything-current-line-contents)))
2532 (goto-char (anything-get-next-header-pos)))
2533 (error (message "")))))
2536 (defun anything-mark-current-line ()
2537 "Move selection overlay to current line."
2539 anything-selection-overlay
(point-at-bol)
2540 (if (anything-pos-multiline-p)
2541 (let ((header-pos (anything-get-next-header-pos))
2542 (separator-pos (anything-get-next-candidate-separator-pos)))
2543 (or (and (null header-pos
) separator-pos
)
2544 (and header-pos separator-pos
(< separator-pos header-pos
)
2548 (1+ (point-at-eol))))
2549 (anything-follow-execute-persistent-action-maybe))
2551 (defun anything-this-command-key ()
2552 (event-basic-type (elt (this-command-keys-vector) 0)))
2553 ;; (progn (read-key-sequence "Key: ") (p (anything-this-command-key)))
2555 (defun anything-select-with-shortcut-internal (types get-key-func
)
2556 (if (memq anything-enable-shortcuts types
)
2557 (save-selected-window
2558 (select-window (anything-window))
2559 (let* ((key (funcall get-key-func
))
2560 (overlay (ignore-errors (nth (position key anything-shortcut-keys
)
2561 anything-digit-overlays
))))
2562 (if (not (and overlay
(overlay-buffer overlay
)))
2564 (select-window (minibuffer-window))
2565 (self-insert-command 1))
2566 (goto-char (overlay-start overlay
))
2567 (anything-mark-current-line)
2568 (anything-exit-minibuffer))))
2569 (self-insert-command 1)))
2571 (defun anything-select-with-prefix-shortcut ()
2572 "Invoke default action with prefix shortcut."
2574 (anything-select-with-shortcut-internal
2576 (lambda () (read-event "Select shortcut key: "))))
2578 (defun anything-select-with-digit-shortcut ()
2579 "Invoke default action with digit/alphabet shortcut."
2581 (anything-select-with-shortcut-internal
2582 '(alphabet t
) 'anything-this-command-key
))
2584 ;; (setq anything-enable-shortcuts 'prefix)
2585 ;; (define-key anything-map "@" 'anything-select-with-prefix-shortcut)
2586 ;; (define-key anything-map (kbd "<f18>") 'anything-select-with-prefix-shortcut)
2588 (defun anything-exit-minibuffer ()
2589 "Select the current candidate by exiting the minibuffer."
2591 (declare (special anything-iswitchb-candidate-selected
))
2592 (setq anything-iswitchb-candidate-selected
(anything-get-selection))
2596 (defun anything-get-next-header-pos ()
2597 "Return the position of the next header from point."
2598 (next-single-property-change (point) 'anything-header
))
2601 (defun anything-get-previous-header-pos ()
2602 "Return the position of the previous header from point"
2603 (previous-single-property-change (point) 'anything-header
))
2606 (defun anything-pos-multiline-p ()
2607 "Return non-nil if the current position is in the multiline source region."
2608 (get-text-property (point) 'anything-multiline
))
2611 (defun anything-get-next-candidate-separator-pos ()
2612 "Return the position of the next candidate separator from point."
2613 (next-single-property-change (point) 'anything-candidate-separator
))
2616 (defun anything-get-previous-candidate-separator-pos ()
2617 "Return the position of the previous candidate separator from point."
2618 (previous-single-property-change (point) 'anything-candidate-separator
))
2621 (defun anything-pos-header-line-p ()
2622 "Return t if the current line is a header line."
2623 (or (get-text-property (point-at-bol) 'anything-header
)
2624 (get-text-property (point-at-bol) 'anything-header-separator
)))
2626 (defun anything-pos-candidate-separator-p ()
2627 "Return t if the current line is a candidate separator."
2628 (get-text-property (point-at-bol) 'anything-candidate-separator
))
2630 ;; (@* "Core: help")
2631 (defun anything-help-internal (bufname insert-content-fn
)
2632 "Show long message during `anything' session."
2633 (save-window-excursion
2634 (select-window (anything-window))
2635 (delete-other-windows)
2636 (switch-to-buffer (get-buffer-create bufname
))
2638 (funcall insert-content-fn
)
2639 (setq mode-line-format
"%b (SPC,C-v:NextPage b,M-v:PrevPage other:Exit)")
2640 (setq cursor-type nil
)
2642 (anything-help-event-loop)))
2644 (defun anything-help-event-loop ()
2646 (loop for event
= (read-event) do
2648 ((?\C-v ?
) (scroll-up))
2649 ((?\M-v ?b
) (scroll-down))
2652 (defun anything-help ()
2653 "Help of `anything'."
2655 (anything-help-internal
2658 (insert (substitute-command-keys
2659 (anything-interpret-value anything-help-message
)))
2662 (defun anything-debug-output ()
2663 "Show all anything-related variables at this time."
2665 (anything-help-internal " *Anything Debug*" 'anything-debug-output-function
))
2667 (defun anything-debug-output-function (&optional vars
)
2668 (message "Calculating all anything-related values...")
2669 (insert "If you debug some variables or forms, set `anything-debug-forms'
2670 to a list of forms.\n\n")
2672 anything-debug-forms
2673 (apropos-internal "^anything-" 'boundp
)))
2675 (pp-to-string v
) "\n"
2676 (pp-to-string (eval v
)) "\n"))
2677 (message "Calculating all anything-related values...Done"))
2679 ;; (@* "Core: misc")
2680 (defun anything-kill-buffer-hook ()
2681 "Remove tick entry from `anything-tick-hash' when killing a buffer."
2682 (loop for key being the hash-keys in anything-tick-hash
2683 if
(string-match (format "^%s/" (regexp-quote (buffer-name))) key
)
2684 do
(remhash key anything-tick-hash
)))
2685 (add-hook 'kill-buffer-hook
'anything-kill-buffer-hook
)
2687 (defun anything-maybe-fit-frame ()
2688 "Fit anything frame to its buffer, and put it at top right of display.
2690 It is disabled by default because some flickering occurred in some environment.
2691 To enable fitting, set both `anything-inhibit-fit-frame-flag' and
2692 `fit-frame-inhibit-fitting' to nil.
2693 You can set user options `fit-frame-max-width-percent' and
2694 `fit-frame-max-height-percent' to control max frame size."
2695 (declare (warn (unresolved 0)))
2696 (when (and (not anything-inhibit-fit-frame-flag
)
2698 (require 'fit-frame nil t
)
2699 (boundp 'fit-frame-inhibit-fitting-flag
)
2700 (not fit-frame-inhibit-fitting-flag
))
2702 (with-anything-window
2703 (fit-frame nil nil nil t
)
2704 (modify-frame-parameters
2706 `((left .
,(- (x-display-pixel-width) (+ (frame-pixel-width) 7)))
2707 (top .
0))))))) ; The (top . 0) shouldn't be necessary (Emacs bug).
2709 (defun anything-preselect (candidate-or-regexp)
2710 (with-anything-window
2711 (when candidate-or-regexp
2712 (goto-char (point-min))
2713 ;; go to first candidate of first source
2715 (let ((start (point)))
2716 (unless (or (re-search-forward
2717 (concat "^" (regexp-quote candidate-or-regexp
) "$")
2719 (progn (goto-char start
)
2720 (re-search-forward candidate-or-regexp nil t
)))
2721 (goto-char start
))))
2722 (anything-mark-current-line)))
2724 (defun anything-delete-current-selection ()
2725 "Delete the currently selected item."
2727 (with-anything-window
2728 (cond ((anything-pos-multiline-p)
2729 (anything-aif (anything-get-next-candidate-separator-pos)
2730 (delete-region (point-at-bol)
2731 (1+ (progn (goto-char it
) (point-at-eol))))
2733 (goto-char (anything-get-previous-candidate-separator-pos))
2734 (delete-region (point-at-bol) (point-max)))
2736 (goto-char (or (anything-get-previous-candidate-separator-pos)
2740 (delete-region (point-at-bol) (1+ (point-at-eol)))
2741 (when (eobp) (forward-line -
1))))
2742 (anything-mark-current-line)))
2744 (defun anything-edit-current-selection-internal (func)
2745 (with-anything-window
2747 (let ((realvalue (get-text-property (point) 'anything-realvalue
)))
2751 (put-text-property (point) (point-at-eol)
2752 'anything-realvalue realvalue
))
2753 (anything-mark-current-line))))
2755 (defmacro anything-edit-current-selection
(&rest forms
)
2756 "Evaluate FORMS at current selection in the anything buffer.
2757 You can edit the line."
2758 `(anything-edit-current-selection-internal
2759 (lambda () ,@forms
)))
2760 (put 'anything-edit-current-selection
'lisp-indent-function
0)
2762 (defun anything-set-pattern (pattern &optional noupdate
)
2763 "Set minibuffer contents to PATTERN.
2764 if optional NOUPDATE is non-nil, anything buffer is not changed."
2765 (with-selected-window (minibuffer-window)
2766 (delete-minibuffer-contents)
2769 (setq anything-pattern pattern
)
2770 (anything-hooks 'cleanup
)
2771 (run-with-idle-timer 0 nil
'anything-hooks
'setup
)))
2773 (defun anything-delete-minibuffer-contents ()
2774 "Same as `delete-minibuffer-contents' but this is a command."
2776 (anything-set-pattern ""))
2777 (defalias 'anything-delete-minibuffer-content
'anything-delete-minibuffer-contents
)
2779 ;; (@* "Built-in plug-in: type")
2780 (defun anything-compile-source--type (source)
2781 (anything-aif (assoc-default 'type source
)
2782 (append source
(assoc-default it anything-type-attributes
) nil
)
2785 ;; `define-anything-type-attribute' is public API.
2787 (defun anything-add-type-attribute (type definition
)
2788 (anything-aif (assq type anything-type-attributes
)
2789 (setq anything-type-attributes
(delete it anything-type-attributes
)))
2790 (push (cons type definition
) anything-type-attributes
))
2792 (defvar anything-types nil
)
2793 (defun anything-document-type-attribute (type doc
)
2794 (add-to-list 'anything-types type t
)
2795 (put type
'anything-typeattrdoc
2796 (concat "- " (symbol-name type
) "\n\n" doc
"\n")))
2798 (defadvice documentation-property
(after anything-document-type-attribute activate
)
2799 "Hack to display type attributes' documentation as `anything-type-attributes' docstring."
2800 (when (eq symbol
'anything-type-attributes
)
2801 (setq ad-return-value
2802 (concat ad-return-value
"\n\n++++ Types currently defined ++++\n"
2803 (mapconcat (lambda (sym) (get sym
'anything-typeattrdoc
))
2804 anything-types
"\n")))))
2806 ;; (@* "Built-in plug-in: dummy")
2807 (defun anything-dummy-candidate (candidate source
)
2808 ;; `source' is defined in filtered-candidate-transformer
2809 (list anything-pattern
))
2811 (defun anything-compile-source--dummy (source)
2812 (if (assoc 'dummy source
)
2814 '((candidates "dummy")
2817 (filtered-candidate-transformer . anything-dummy-candidate
)
2822 ;; (@* "Built-in plug-in: disable-shortcuts")
2823 (defvar anything-orig-enable-shortcuts nil
)
2824 (defun anything-save-enable-shortcuts ()
2826 (lambda () (setq anything-orig-enable-shortcuts anything-enable-shortcuts
2827 anything-enable-shortcuts nil
))))
2828 (defun anything-compile-source--disable-shortcuts (source)
2829 (if (assoc 'disable-shortcuts source
)
2830 (append `((init ,@(anything-mklist (assoc-default 'init source
))
2831 anything-save-enable-shortcuts
)
2832 (resume ,@(anything-mklist (assoc-default 'resume source
))
2833 anything-save-enable-shortcuts
)
2834 (cleanup ,@(anything-mklist (assoc-default 'cleanup source
))
2835 (lambda () (setq anything-enable-shortcuts
2836 anything-orig-enable-shortcuts
))))
2840 ;; (@* "Built-in plug-in: candidates-in-buffer")
2841 (defun anything-candidates-in-buffer ()
2842 "Get candidates from the candidates buffer according to `anything-pattern'.
2844 BUFFER is `anything-candidate-buffer' by default. Each
2845 candidate must be placed in one line. This function is meant to
2846 be used in candidates-in-buffer or candidates attribute of an
2847 anything source. Especially fast for many (1000+) candidates.
2850 '((name . \"many files\")
2851 (init . (lambda () (with-current-buffer (anything-candidate-buffer 'local)
2852 (insert-many-filenames))))
2853 (search re-search-forward) ; optional
2854 (candidates-in-buffer)
2857 +===============================================================+
2858 | The new way of making and narrowing candidates: Using buffers |
2859 +===============================================================+
2861 By default, `anything' makes candidates by evaluating the
2862 candidates function, then narrows them by `string-match' for each
2865 But this way is very slow for many candidates. The new way is
2866 storing all candidates in a buffer and narrowing them by
2867 `re-search-forward'. Search function is customizable by search
2868 attribute. The important point is that buffer processing is MUCH
2869 FASTER than string list processing and is the Emacs way.
2871 The init function writes all candidates to a newly-created
2872 candidate buffer. The candidates buffer is created or specified
2873 by `anything-candidate-buffer'. Candidates are stored in a line.
2875 The candidates function narrows all candidates, IOW creates a
2876 subset of candidates dynamically. It is the task of
2877 `anything-candidates-in-buffer'. As long as
2878 `anything-candidate-buffer' is used,`(candidates-in-buffer)' is
2879 sufficient in most cases.
2881 Note that `(candidates-in-buffer)' is shortcut of three attributes:
2882 (candidates . anything-candidates-in-buffer)
2885 And `(candidates-in-buffer . func)' is shortcut of three attributes:
2889 The expansion is performed in `anything-get-sources'.
2891 The candidates-in-buffer attribute implies the volatile attribute.
2892 The volatile attribute is needed because `anything-candidates-in-buffer'
2893 creates candidates dynamically and need to be called everytime
2894 `anything-pattern' changes.
2896 Because `anything-candidates-in-buffer' plays the role of `match' attribute
2897 function, specifying `(match identity)' makes the source slightly faster.
2899 To customize `anything-candidates-in-buffer' behavior, use search,
2900 get-line and search-from-end attributes. See also `anything-sources' docstring.
2902 (declare (special source
))
2903 (anything-candidates-in-buffer-1 (anything-candidate-buffer)
2905 (or (assoc-default 'get-line source
)
2906 #'buffer-substring-no-properties
)
2907 ;; use external variable `source'.
2908 (or (assoc-default 'search source
)
2909 (if (assoc 'search-from-end source
)
2910 '(re-search-backward)
2911 '(re-search-forward)))
2912 (anything-candidate-number-limit source
)
2913 (assoc 'search-from-end source
)))
2915 (defun anything-candidates-in-buffer-1 (buffer pattern get-line-fn search-fns limit search-from-end
)
2916 ;; buffer == nil when candidates buffer does not exist.
2918 (with-current-buffer buffer
2919 (let ((start-point (if search-from-end
(point-max) (point-min)))
2920 (endp (if search-from-end
#'bobp
#'eobp
)))
2921 (goto-char (1- start-point
))
2922 (if (string= pattern
"")
2923 (anything-initial-candidates-from-candidate-buffer
2924 endp get-line-fn limit search-from-end
)
2925 (anything-search-from-candidate-buffer
2926 pattern get-line-fn search-fns limit search-from-end
2927 start-point endp
))))))
2929 (defun anything-point-is-moved (proc)
2930 "If point is moved after executing PROC, return t, otherwise nil."
2931 (/= (point) (progn (funcall proc
) (point))))
2933 (defun anything-search-from-candidate-buffer (pattern get-line-fn search-fns
2934 limit search-from-end
2936 (let (buffer-read-only
2937 matches exit newmatches
)
2938 (anything-search-from-candidate-buffer-internal
2940 (clrhash anything-cib-hash
)
2941 (dolist (searcher search-fns
)
2942 (goto-char start-point
)
2943 (setq newmatches nil
)
2944 (loop with item-count
= 0
2945 while
(funcall searcher pattern nil t
)
2946 for cand
= (funcall get-line-fn
(point-at-bol) (point-at-eol))
2947 do
(anything-accumulate-candidates-internal
2948 cand newmatches anything-cib-hash item-count limit
)
2949 unless
(anything-point-is-moved
2952 (goto-char (1- (point-at-bol)))
2955 (setq matches
(append matches
(nreverse newmatches
)))
2957 (delq nil matches
)))))
2959 (defun anything-initial-candidates-from-candidate-buffer (endp get-line-fn limit search-from-end
)
2960 (delq nil
(loop with next-line-fn
=
2962 (lambda (x) (goto-char (max (1- (point-at-bol)) 1)))
2964 until
(funcall endp
)
2965 for i from
1 to limit
2966 collect
(funcall get-line-fn
(point-at-bol) (point-at-eol))
2967 do
(funcall next-line-fn
1))))
2969 (defun anything-search-from-candidate-buffer-internal (search-fn)
2970 (goto-char (point-min))
2972 (goto-char (point-max))
2976 (goto-char (point-min))
2978 (goto-char (1- (point-max)))
2981 (set-buffer-modified-p nil
)))
2983 (defun anything-candidate-buffer (&optional create-or-buffer
)
2984 "Register and return a buffer containing candidates of current source.
2985 `anything-candidate-buffer' searches buffer-local candidates buffer first,
2986 then global candidates buffer.
2988 Acceptable values of CREATE-OR-BUFFER:
2991 Only return the candidates buffer.
2993 Register a buffer as a candidates buffer.
2995 Create a new global candidates buffer,
2996 named \" *anything candidates:SOURCE*\".
2997 - other non-nil value
2998 Create a new local candidates buffer,
2999 named \" *anything candidates:SOURCE*ANYTHING-CURRENT-BUFFER\".
3001 (let* ((global-bname (format " *anything candidates:%s*" anything-source-name
))
3002 (local-bname (format " *anything candidates:%s*%s"
3003 anything-source-name
3004 (buffer-name anything-current-buffer
)))
3007 (setq anything-candidate-buffer-alist
3008 (cons (cons anything-source-name create-or-buffer
)
3009 (delete (assoc anything-source-name
3010 anything-candidate-buffer-alist
)
3011 anything-candidate-buffer-alist
)))))
3014 (loop for b in
(buffer-list)
3015 if
(string-match (format "^%s" (regexp-quote global-bname
))
3017 do
(kill-buffer b
))))
3020 (with-current-buffer
3021 (get-buffer-create (if (eq create-or-buffer
'global
)
3024 (buffer-disable-undo)
3026 (font-lock-mode -
1))))
3029 (or (get-buffer local-bname
)
3030 (get-buffer global-bname
)
3031 (anything-aif (assoc-default anything-source-name
3032 anything-candidate-buffer-alist
)
3033 (and (buffer-live-p it
) it
))))))
3034 (when create-or-buffer
3035 (funcall register-func
)
3036 (unless (bufferp create-or-buffer
)
3037 (and (eq create-or-buffer
'global
) (funcall kill-buffers-func
))
3038 (funcall create-func
)))
3039 (funcall return-func
)))
3041 (defun anything-compile-source--candidates-in-buffer (source)
3042 (anything-aif (assoc 'candidates-in-buffer source
)
3044 `((candidates .
,(or (cdr it
) 'anything-candidates-in-buffer
))
3045 (volatile) (match identity
)))
3048 ;; (@* "Utility: resplit anything window")
3049 (defun anything-toggle-resplit-window ()
3050 "Toggle resplit anything window, vertically or horizontally."
3052 (with-anything-window
3053 (let ((before-height (window-height)))
3056 (select-window (if (= (window-height) before-height
)
3057 (split-window-vertically)
3058 (split-window-horizontally)))
3061 ;; (@* "Utility: select another action by key")
3062 (defun anything-select-nth-action (n)
3063 "Select the nth action for the currently selected candidate."
3064 (setq anything-saved-selection
(anything-get-selection))
3065 (unless anything-saved-selection
3066 (error "Nothing is selected."))
3067 (setq anything-saved-action
(anything-get-nth-action n
(anything-get-action)))
3068 (anything-exit-minibuffer))
3070 (defun anything-get-nth-action (n action
)
3071 (cond ((and (zerop n
) (functionp action
))
3074 (or (cdr (elt action n
))
3075 (error "No such action")))
3076 ((and (functionp action
) (< 0 n
))
3077 (error "Sole action."))
3079 (error "Error in `anything-select-nth-action'."))))
3081 (defun anything-select-2nd-action ()
3082 "Select the 2nd action for the currently selected candidate."
3084 (anything-select-nth-action 1))
3086 (defun anything-select-3rd-action ()
3087 "Select the 3rd action for the currently selected candidate."
3089 (anything-select-nth-action 2))
3091 (defun anything-select-4th-action ()
3092 "Select the 4th action for the currently selected candidate."
3094 (anything-select-nth-action 3))
3096 (defun anything-select-2nd-action-or-end-of-line ()
3097 "Select the 2nd action for the currently selected candidate if the point is at the end of minibuffer.
3098 Otherwise goto the end of minibuffer."
3101 (anything-select-nth-action 1)
3104 ;; (@* "Utility: Persistent Action")
3105 (defmacro with-anything-display-same-window
(&rest body
)
3106 "Make `pop-to-buffer' and `display-buffer' display in the same window."
3107 `(let ((display-buffer-function 'anything-persistent-action-display-buffer
))
3109 (put 'with-anything-display-same-window
'lisp-indent-function
0)
3111 (defvar anything-persistent-action-display-window nil
)
3112 (defun anything-initialize-persistent-action ()
3113 (set (make-local-variable 'anything-persistent-action-display-window
) nil
))
3115 (defun* anything-execute-persistent-action
(&optional
(attr 'persistent-action
))
3116 "If a candidate is selected then perform the associated action without quitting anything."
3118 (anything-log "executing persistent-action")
3119 (save-selected-window
3120 (anything-select-persistent-action-window)
3121 (anything-log-eval (current-buffer))
3122 (let ((anything-in-persistent-action t
))
3123 (with-anything-display-same-window
3124 (anything-execute-selection-action
3126 (or (assoc-default attr
(anything-get-current-source))
3127 (anything-get-action))
3129 (anything-log-run-hook 'anything-after-persistent-action-hook
)))))
3131 (defun anything-select-persistent-action-window ()
3132 (select-window (get-buffer-window (anything-buffer-get)))
3134 (setq minibuffer-scroll-window
3135 (setq anything-persistent-action-display-window
3136 (cond ((window-live-p anything-persistent-action-display-window
)
3137 anything-persistent-action-display-window
)
3138 ((and anything-samewindow
(one-window-p t
))
3140 ((get-buffer-window anything-current-buffer
))
3142 (next-window (selected-window) 1)))))))
3144 (defun anything-persistent-action-display-buffer (buf &optional not-this-window
)
3145 "Make `pop-to-buffer' and `display-buffer' display in the same window in persistent action.
3146 If `anything-persistent-action-use-special-display' is non-nil and
3147 BUF is to be displayed by `special-display-function', use it.
3148 Otherwise ignores `special-display-buffer-names' and `special-display-regexps'."
3149 (let* ((name (buffer-name buf
))
3150 display-buffer-function pop-up-windows
3151 (same-window-regexps
3152 (unless (and anything-persistent-action-use-special-display
3154 (mapcar (lambda (x) (or (car-safe x
) x
))
3155 special-display-buffer-names
))
3157 (lambda (x) (string-match (or (car-safe x
) x
) name
))
3158 special-display-regexps
)))
3160 (display-buffer buf not-this-window
)))
3162 ;; scroll-other-window(-down)? for persistent-action
3163 (defun anything-scroll-other-window-base (command)
3164 (save-selected-window
3167 (lambda (w) (not (string= anything-buffer
(buffer-name (window-buffer w
)))))
3168 'no-minibuffer
'current-frame
))
3169 (funcall command anything-scroll-amount
)))
3171 (defun anything-scroll-other-window ()
3172 "Scroll other window (not *Anything* window) upward."
3174 (anything-scroll-other-window-base 'scroll-up
))
3175 (defun anything-scroll-other-window-down ()
3176 "Scroll other window (not *Anything* window) downward."
3178 (anything-scroll-other-window-base 'scroll-down
))
3180 ;; (@* "Utility: Visible Mark")
3181 (defface anything-visible-mark
3182 '((((min-colors 88) (background dark
))
3183 (:background
"green1" :foreground
"black"))
3184 (((background dark
)) (:background
"green" :foreground
"black"))
3185 (((min-colors 88)) (:background
"green1"))
3186 (t (:background
"green")))
3187 "Face for visible mark."
3189 (defvar anything-visible-mark-face
'anything-visible-mark
)
3190 (defvar anything-visible-mark-overlays nil
)
3192 (defun anything-clear-visible-mark ()
3193 (with-current-buffer (anything-buffer-get)
3194 (mapc 'delete-overlay anything-visible-mark-overlays
)
3195 (set (make-local-variable 'anything-visible-mark-overlays
) nil
)))
3196 (add-hook 'anything-after-initialize-hook
'anything-clear-visible-mark
)
3198 (defvar anything-c-marked-candidate-list nil
3199 "[OBSOLETE] DO NOT USE!!")
3200 (defvar anything-marked-candidates nil
3201 "Marked candadates. List of (source . real) pair.")
3203 (defun anything-this-visible-mark ()
3204 (loop for o in anything-visible-mark-overlays
3205 when
(equal (point-at-bol) (overlay-start o
))
3208 (defun anything-delete-visible-mark (overlay)
3209 (setq anything-c-marked-candidate-list
3210 (remove (anything-current-line-contents) anything-c-marked-candidate-list
))
3211 (setq anything-marked-candidates
3213 (cons (anything-get-current-source) (anything-get-selection))
3214 anything-marked-candidates
))
3215 (delete-overlay overlay
)
3216 (setq anything-visible-mark-overlays
3217 (delq overlay anything-visible-mark-overlays
)))
3219 (defun anything-make-visible-mark ()
3220 (let ((o (make-overlay (point-at-bol) (1+ (point-at-eol)))))
3221 (overlay-put o
'face anything-visible-mark-face
)
3222 (overlay-put o
'source
(assoc-default 'name
(anything-get-current-source)))
3223 (overlay-put o
'string
(buffer-substring (overlay-start o
) (overlay-end o
)))
3224 (add-to-list 'anything-visible-mark-overlays o
))
3225 (push (anything-current-line-contents) anything-c-marked-candidate-list
)
3226 (push (cons (anything-get-current-source) (anything-get-selection))
3227 anything-marked-candidates
))
3229 (defun anything-toggle-visible-mark ()
3230 "Toggle anything visible mark at point."
3232 (with-anything-window
3233 (anything-aif (anything-this-visible-mark)
3234 (anything-delete-visible-mark it
)
3235 (anything-make-visible-mark))
3236 (anything-next-line)))
3238 (defun anything-display-all-visible-marks ()
3239 "Show all `anything' visible marks strings."
3241 (with-anything-window
3242 (lexical-let ((overlays (reverse anything-visible-mark-overlays
)))
3243 (anything-run-after-quit
3245 (with-output-to-temp-buffer "*anything visible marks*"
3246 (dolist (o overlays
) (princ (overlay-get o
'string
)))))))))
3248 (defun anything-marked-candidates ()
3249 "Marked candidates (real value) of current source if any,
3250 otherwise 1-element list of current selection.
3252 It is analogous to `dired-get-marked-files'."
3253 (with-current-buffer (anything-buffer-get)
3255 (if anything-marked-candidates
3256 (loop with current-src
= (anything-get-current-source)
3257 for
(source . real
) in
(reverse anything-marked-candidates
)
3258 when
(equal current-src source
)
3259 collect
(anything-coerce-selection real source
))
3260 (list (anything-get-selection)))))
3261 (anything-log-eval cands
)
3264 (defun anything-reset-marked-candidates ()
3265 (with-current-buffer (anything-buffer-get)
3266 (set (make-local-variable 'anything-c-marked-candidate-list
) nil
)
3267 (set (make-local-variable 'anything-marked-candidates
) nil
)))
3269 (add-hook 'anything-after-initialize-hook
'anything-reset-marked-candidates
)
3270 ;; (add-hook 'anything-after-action-hook 'anything-reset-marked-candidates)
3272 (defun anything-current-source-name= (name)
3274 (goto-char (anything-get-previous-header-pos))
3275 (equal name
(anything-current-line-contents))))
3277 (defun anything-revive-visible-mark ()
3278 (with-current-buffer anything-buffer
3279 (dolist (o anything-visible-mark-overlays
)
3280 (goto-char (point-min))
3281 (while (and (search-forward (overlay-get o
'string
) nil t
)
3282 (anything-current-source-name= (overlay-get o
'source
)))
3283 ;; Now the next line of visible mark
3284 (move-overlay o
(point-at-bol 0) (1+ (point-at-eol 0)))))))
3285 (add-hook 'anything-update-hook
'anything-revive-visible-mark
)
3287 (defun anything-next-point-in-list (curpos points
&optional prev
)
3289 ;; rule out special cases
3290 ((null points
) curpos
)
3291 ((and prev
(< curpos
(car points
))) curpos
)
3292 ((< (car (last points
)) curpos
)
3293 (if prev
(car (last points
)) curpos
))
3296 (loop for pt in points
3300 (loop for pt in points
3306 (defun anything-next-visible-mark (&optional prev
)
3307 "Move next anything visible mark."
3309 (with-anything-window
3310 (goto-char (anything-next-point-in-list
3312 (sort (mapcar 'overlay-start anything-visible-mark-overlays
) '<)
3314 (anything-mark-current-line)))
3316 (defun anything-prev-visible-mark ()
3317 "Move previous anything visible mark."
3319 (anything-next-visible-mark t
))
3321 ;; (@* "Utility: `find-file' integration")
3322 (defun anything-quit-and-find-file ()
3323 "Drop into `find-file' from `anything' like `iswitchb-find-file'.
3324 If current selection is a buffer or a file, `find-file' from its directory."
3326 (anything-run-after-quit
3328 (if (file-exists-p f
)
3329 (let ((default-directory (file-name-directory f
)))
3330 (call-interactively 'find-file
))
3331 (call-interactively 'find-file
)))
3332 (anything-aif (get-buffer (anything-get-selection))
3333 (buffer-file-name it
)
3334 (expand-file-name (anything-get-selection)))))
3336 ;; (@* "Utility: Selection Paste")
3337 (defun anything-yank-selection ()
3338 "Set minibuffer contents to current selection."
3340 (anything-set-pattern (anything-get-selection nil t
)))
3342 (defun anything-kill-selection-and-quit ()
3343 "Store current selection to kill ring.
3344 You can paste it by typing C-y."
3346 (anything-run-after-quit
3349 (message "Killed: %s" sel
))
3350 (anything-get-selection nil t
)))
3353 ;; (@* "Utility: Automatical execution of persistent-action")
3354 (add-to-list 'minor-mode-alist
'(anything-follow-mode " AFollow"))
3355 (defun anything-follow-mode ()
3356 "If this mode is on, persistent action is executed everytime the cursor is moved."
3358 (with-current-buffer anything-buffer
3359 (setq anything-follow-mode
(not anything-follow-mode
))
3360 (message "anything-follow-mode is %s"
3361 (if anything-follow-mode
"enabled" "disabled"))))
3363 (defun anything-follow-execute-persistent-action-maybe ()
3364 "Execute persistent action after `anything-input-idle-delay' secs when `anything-follow-mode' is enabled."
3365 (and (not (get-buffer-window anything-action-buffer
'visible
))
3366 (buffer-local-value 'anything-follow-mode
3367 (get-buffer-create anything-buffer
))
3368 (sit-for anything-input-idle-delay
)
3370 (anything-get-selection)
3372 (anything-execute-persistent-action))))
3374 ;; (@* "Utility: Migrate `anything-sources' to my-anything command")
3375 (defun anything-migrate-sources ()
3376 "Help to migrate to new `anything' way."
3378 (with-current-buffer (get-buffer-create "*anything migrate*")
3381 Setting `anything-sources' directly is not good because
3382 `anything' is not for one command. For now, interactive use of
3383 `anything' (M-x anything) is only for demonstration purpose.
3384 So you should define commands calling `anything'.
3385 I help you to migrate to the new way.
3387 The code below is automatically generated from current
3388 `anything-sources' value. You can use the `my-anything' command
3391 Copy and paste it to your .emacs. Then substitute `my-anything'
3392 for `anything' bindings in all `define-key', `local-set-key' and
3393 `global-set-key' calls.
3395 \(defun my-anything ()
3396 \"Anything command for you.
3398 It is automatically generated by `anything-migrate-sources'.\"
3400 (anything-other-buffer
3403 " anything-sources
))
3404 (eval-last-sexp nil
)
3405 (substitute-key-definition 'anything
'my-anything global-map
)
3406 (pop-to-buffer (current-buffer))))
3408 ;; (@* "Utility: Incremental search within results (unmaintained)")
3410 (defvar anything-isearch-original-global-map nil
3411 "Original global map before Anything isearch is started.")
3413 (defvar anything-isearch-original-message-timeout nil
3414 "Original message timeout before Anything isearch is started.")
3416 (defvar anything-isearch-pattern nil
3417 "The current isearch pattern.")
3419 (defvar anything-isearch-message-suffix
""
3420 "Message suffix indicating the current state of the search.")
3422 (defvar anything-isearch-original-point nil
3423 "Original position of point before isearch is started.")
3425 (defvar anything-isearch-original-window nil
3426 "Original selected window before isearch is started.")
3428 (defvar anything-isearch-original-cursor-in-non-selected-windows nil
3429 "Original value of cursor-in-non-selected-windows before isearch is started.")
3431 (defvar anything-isearch-original-deferred-action-list nil
3432 "Original value of deferred-action-list before isearch is started.")
3434 (defvar anything-isearch-match-positions nil
3435 "Stack of positions of matches or non-matches.
3437 It's a list of plists with two properties: `event', the last user
3438 event, `start', the start position of the current match, and
3439 `pos', the position of point after that event.
3441 The value of `event' can be the following symbols: `char' if a
3442 character was typed, `error' if a non-matching character was
3443 typed, `search' if a forward search had to be done after a
3444 character, and `search-again' if a search was done for the next
3445 occurrence of the current pattern.")
3447 (defvar anything-isearch-match-start nil
3448 "Start position of the current match.")
3451 (defun anything-isearch ()
3452 "Start incremental search within results. (UNMAINTAINED)"
3454 (if (anything-empty-buffer-p (anything-buffer-get))
3455 (message "There are no results.")
3457 (setq anything-isearch-original-message-timeout minibuffer-message-timeout
)
3458 (setq minibuffer-message-timeout nil
)
3460 (setq anything-isearch-original-global-map global-map
)
3464 (setq anything-isearch-original-window
(selected-window))
3465 (select-window (anything-window))
3466 (setq cursor-type t
)
3468 (setq anything-isearch-original-deferred-action-list
3469 (default-value 'deferred-action-list
))
3470 (setq-default deferred-action-list nil
)
3471 (add-hook 'deferred-action-list
'anything-isearch-post-command
)
3473 (use-global-map anything-isearch-map
)
3474 (setq overriding-terminal-local-map anything-isearch-map
)
3476 (setq anything-isearch-pattern
"")
3478 (setq anything-isearch-original-cursor-in-non-selected-windows
3479 cursor-in-non-selected-windows
)
3480 (setq cursor-in-non-selected-windows nil
)
3482 (setq anything-isearch-original-point
(point-marker))
3483 (goto-char (point-min))
3485 (anything-mark-current-line)
3487 (setq anything-isearch-match-positions nil
)
3488 (setq anything-isearch-match-start
(point-marker))
3490 (if anything-isearch-overlay
3491 ;; make sure the overlay belongs to the anything buffer
3492 (move-overlay anything-isearch-overlay
(point-min) (point-min)
3493 (get-buffer (anything-buffer-get)))
3495 (setq anything-isearch-overlay
(make-overlay (point-min) (point-min)))
3496 (overlay-put anything-isearch-overlay
'face anything-isearch-match-face
))
3498 (setq anything-isearch-message-suffix
3499 (substitute-command-keys "cancel with \\[anything-isearch-cancel]")))
3501 (error (anything-isearch-cleanup)))))
3504 (defun anything-isearch-post-command ()
3505 "Print the current pattern after every command."
3506 (anything-isearch-message)
3507 (when (anything-window)
3508 (with-anything-window
3509 (move-overlay anything-isearch-overlay anything-isearch-match-start
(point)
3510 (get-buffer (anything-buffer-get))))))
3513 (defun anything-isearch-printing-char ()
3514 "Add printing char to the pattern."
3516 (let ((char (char-to-string last-command-event
)))
3517 (setq anything-isearch-pattern
(concat anything-isearch-pattern char
))
3519 (with-anything-window
3520 (if (looking-at char
)
3522 (push (list 'event
'char
3523 'start anything-isearch-match-start
3524 'pos
(point-marker))
3525 anything-isearch-match-positions
)
3528 (let ((start (point)))
3529 (while (and (re-search-forward anything-isearch-pattern nil t
)
3530 (anything-pos-header-line-p)))
3531 (if (or (anything-pos-header-line-p)
3535 (push (list 'event
'error
3536 'start anything-isearch-match-start
3537 'pos
(point-marker))
3538 anything-isearch-match-positions
))
3540 (push (list 'event
'search
3541 'start anything-isearch-match-start
3542 'pos
(copy-marker start
))
3543 anything-isearch-match-positions
)
3544 (setq anything-isearch-match-start
3545 (copy-marker (match-beginning 0))))))
3547 (anything-mark-current-line))))
3550 (defun anything-isearch-again ()
3551 "Search again for the current pattern"
3553 (if (equal anything-isearch-pattern
"")
3554 (setq anything-isearch-message-suffix
"no pattern yet")
3556 (with-anything-window
3557 (let ((start (point)))
3558 (while (and (re-search-forward anything-isearch-pattern nil t
)
3559 (anything-pos-header-line-p)))
3560 (if (or (anything-pos-header-line-p)
3565 (plist-get (car anything-isearch-match-positions
)
3567 (setq anything-isearch-message-suffix
"no more matches")))
3569 (push (list 'event
'search-again
3570 'start anything-isearch-match-start
3571 'pos
(copy-marker start
))
3572 anything-isearch-match-positions
)
3573 (setq anything-isearch-match-start
(copy-marker (match-beginning 0)))
3575 (anything-mark-current-line))))))
3578 (defun anything-isearch-delete ()
3581 (unless (equal anything-isearch-pattern
"")
3582 (let ((last (pop anything-isearch-match-positions
)))
3583 (unless (eq 'search-again
(plist-get last
'event
))
3584 (setq anything-isearch-pattern
3585 (substring anything-isearch-pattern
0 -
1)))
3587 (with-anything-window
3588 (goto-char (plist-get last
'pos
))
3589 (setq anything-isearch-match-start
(plist-get last
'start
))
3590 (anything-mark-current-line)))))
3593 (defun anything-isearch-default-action ()
3594 "Execute the default action for the selected candidate."
3596 (anything-isearch-cleanup)
3597 (with-current-buffer (anything-buffer-get) (anything-exit-minibuffer)))
3600 (defun anything-isearch-select-action ()
3601 "Choose an action for the selected candidate."
3603 (anything-isearch-cleanup)
3604 (with-anything-window
3605 (anything-select-action)))
3608 (defun anything-isearch-cancel ()
3609 "Cancel Anything isearch."
3611 (anything-isearch-cleanup)
3612 (when (anything-window)
3613 (with-anything-window
3614 (goto-char anything-isearch-original-point
)
3615 (anything-mark-current-line))))
3618 (defun anything-isearch-cleanup ()
3619 "Clean up the mess."
3620 (setq minibuffer-message-timeout anything-isearch-original-message-timeout
)
3621 (with-current-buffer (anything-buffer-get)
3622 (setq overriding-terminal-local-map nil
)
3623 (setq cursor-type nil
)
3624 (setq cursor-in-non-selected-windows
3625 anything-isearch-original-cursor-in-non-selected-windows
))
3626 (when anything-isearch-original-window
3627 (select-window anything-isearch-original-window
))
3629 (use-global-map anything-isearch-original-global-map
)
3630 (setq-default deferred-action-list
3631 anything-isearch-original-deferred-action-list
)
3632 (when (overlayp anything-isearch-overlay
)
3633 (delete-overlay anything-isearch-overlay
)))
3636 (defun anything-isearch-message ()
3638 (if (and (equal anything-isearch-message-suffix
"")
3639 (eq (plist-get (car anything-isearch-match-positions
) 'event
)
3641 (setq anything-isearch-message-suffix
"failing"))
3643 (unless (equal anything-isearch-message-suffix
"")
3644 (setq anything-isearch-message-suffix
3645 (concat " [" anything-isearch-message-suffix
"]")))
3647 (message (concat "Search within results: "
3648 anything-isearch-pattern
3649 anything-isearch-message-suffix
))
3651 (setq anything-isearch-message-suffix
""))
3654 ;; (@* "Utility: Iswitchb integration (unmaintained)")
3656 (defvar anything-iswitchb-candidate-selected nil
3657 "Indicates whether an anything candidate is selected from iswitchb.")
3659 (defvar anything-iswitchb-frame-configuration nil
3660 "Saved frame configuration, before anything buffer was displayed.")
3662 (defvar anything-iswitchb-saved-keys nil
3663 "The original in iswitchb before binding anything keys.")
3666 (defun anything-iswitchb-setup ()
3667 "Integrate anything completion into iswitchb (UNMAINTAINED).
3669 If the user is idle for `anything-iswitchb-idle-delay' seconds
3670 after typing something into iswitchb then anything candidates are
3671 shown for the current iswitchb input.
3673 ESC cancels anything completion and returns to normal iswitchb.
3675 Some key bindings in `anything-map' are modified.
3676 See also `anything-iswitchb-setup-keys'."
3681 ;; disable timid completion during iswitchb
3682 (put 'iswitchb-buffer
'timid-completion
'disabled
)
3683 (add-hook 'minibuffer-setup-hook
'anything-iswitchb-minibuffer-setup
)
3685 (defadvice iswitchb-visit-buffer
3686 (around anything-iswitchb-visit-buffer activate
)
3687 (if anything-iswitchb-candidate-selected
3688 (anything-execute-selection-action)
3691 (defadvice iswitchb-possible-new-buffer
3692 (around anything-iswitchb-possible-new-buffer activate
)
3693 (if anything-iswitchb-candidate-selected
3694 (anything-execute-selection-action)
3696 (anything-iswitchb-setup-keys)
3697 (message "Iswitchb integration is activated."))
3699 (defun anything-iswitchb-setup-keys ()
3700 "Modify `anything-map' for anything-iswitchb users.
3702 C-p is used instead of M-p, because anything uses ESC
3703 (currently hardcoded) for `anything-iswitchb-cancel-anything' and
3704 Emacs handles ESC and Meta as synonyms, so ESC overrides
3705 other commands with Meta prefix.
3707 Note that iswitchb uses M-p and M-n by default for history
3708 navigation, so you should bind C-p and C-n in
3709 `iswitchb-mode-map' if you use the history keys and don't want
3710 to use different keys for iswitchb while anything is not yet
3711 kicked in. These keys are not bound automatically by anything
3712 in `iswitchb-mode-map' because they (C-n at least) already have
3713 a standard iswitchb binding which you might be accustomed to.
3715 Binding M-s is used instead of C-s, because C-s has a binding in
3716 iswitchb. You can rebind it AFTER `anything-iswitchb-setup'.
3718 Unbind C-r to prevent problems during anything-isearch."
3719 (define-key anything-map
(kbd "C-s") nil
)
3720 (define-key anything-map
(kbd "M-p") nil
)
3721 (define-key anything-map
(kbd "M-n") nil
)
3722 (define-key anything-map
(kbd "M-v") nil
)
3723 (define-key anything-map
(kbd "C-v") nil
)
3724 (define-key anything-map
(kbd "C-p") 'anything-previous-history-element
)
3725 (define-key anything-map
(kbd "C-n") 'anything-next-history-element
)
3726 (define-key anything-map
(kbd "M-s") nil
)
3727 (define-key anything-map
(kbd "M-s") 'anything-isearch
)
3728 (define-key anything-map
(kbd "C-r") nil
))
3730 (defun anything-iswitchb-minibuffer-setup ()
3731 (when (eq this-command
'iswitchb-buffer
)
3732 (add-hook 'minibuffer-exit-hook
'anything-iswitchb-minibuffer-exit
)
3734 (setq anything-iswitchb-frame-configuration nil
)
3735 (setq anything-iswitchb-candidate-selected nil
)
3736 (add-hook 'anything-update-hook
'anything-iswitchb-handle-update
)
3738 (anything-initialize)
3740 (add-hook 'deferred-action-list
'anything-iswitchb-check-input
)))
3743 (defun anything-iswitchb-minibuffer-exit ()
3744 (remove-hook 'minibuffer-exit-hook
'anything-iswitchb-minibuffer-exit
)
3745 (remove-hook 'deferred-action-list
'anything-iswitchb-check-input
)
3746 (remove-hook 'anything-update-hook
'anything-iswitchb-handle-update
)
3750 (when anything-iswitchb-frame-configuration
3751 (anything-set-frame/window-configuration
3752 anything-iswitchb-frame-configuration
)
3753 (setq anything-iswitchb-frame-configuration nil
)))
3756 (defun anything-iswitchb-check-input ()
3757 "Extract iswitchb input and check if it needs to be handled."
3758 (declare (special iswitchb-text
))
3759 (if (or anything-iswitchb-frame-configuration
3760 (sit-for anything-iswitchb-idle-delay
))
3761 (anything-check-new-input iswitchb-text
)))
3764 (defun anything-iswitchb-handle-update ()
3765 "Pop up the anything buffer if it's not empty and it's not
3766 shown yet and bind anything commands in iswitchb."
3767 (unless (or (anything-empty-buffer-p anything-buffer
)
3768 anything-iswitchb-frame-configuration
)
3769 (setq anything-iswitchb-frame-configuration
3770 (anything-current-frame/window-configuration
))
3772 (save-selected-window
3773 (if (not anything-samewindow
)
3774 (pop-to-buffer anything-buffer
)
3776 (select-window (get-lru-window))
3777 (switch-to-buffer anything-buffer
)))
3779 (with-current-buffer (window-buffer (active-minibuffer-window))
3780 (let* ((anything-prefix "anything-")
3781 (prefix-length (length anything-prefix
))
3787 (let ((command (cdr binding
)))
3788 (when (and (symbolp command
)
3789 (eq (compare-strings
3792 (symbol-name command
)
3796 (cdr anything-map
)))))
3797 (bindings (mapcar (lambda (command)
3799 (where-is-internal command anything-map
)))
3802 (push (list 'anything-iswitchb-cancel-anything
(kbd "<ESC>"))
3805 (setq anything-iswitchb-saved-keys nil
)
3807 (let* ((iswitchb-prefix "iswitchb-")
3808 (prefix-length (length iswitchb-prefix
)))
3809 (dolist (binding bindings
)
3810 (dolist (key (cdr binding
))
3811 (let ((old-command (lookup-key (current-local-map) key
)))
3812 (unless (and anything-iswitchb-dont-touch-iswithcb-keys
3813 (symbolp old-command
)
3814 (eq (compare-strings iswitchb-prefix
3816 (symbol-name old-command
)
3819 (push (cons key old-command
)
3820 anything-iswitchb-saved-keys
)
3821 (define-key (current-local-map) key
(car binding
)))))))))))
3824 (defun anything-iswitchb-cancel-anything ()
3825 "Cancel anything completion and return to standard iswitchb."
3828 (dolist (binding anything-iswitchb-saved-keys
)
3829 (define-key (current-local-map) (car binding
) (cdr binding
)))
3830 (anything-iswitchb-minibuffer-exit)))
3832 ;; (@* "Compatibility")
3834 ;; Copied assoc-default from XEmacs version 21.5.12
3835 (unless (fboundp 'assoc-default
)
3836 (defun assoc-default (key alist
&optional test default
)
3837 "Find object KEY in a pseudo-alist ALIST.
3838 ALIST is a list of conses or objects. Each element (or the element's car,
3839 if it is a cons) is compared with KEY by evaluating (TEST (car elt) KEY).
3840 If that is non-nil, the element matches;
3841 then `assoc-default' returns the element's cdr, if it is a cons,
3842 or DEFAULT if the element is not a cons.
3844 If no element matches, the value is nil.
3845 If TEST is omitted or nil, `equal' is used."
3846 (let (found (tail alist
) value
)
3847 (while (and tail
(not found
))
3848 (let ((elt (car tail
)))
3849 (when (funcall (or test
'equal
) (if (consp elt
) (car elt
) elt
) key
)
3850 (setq found t value
(if (consp elt
) (cdr elt
) default
))))
3851 (setq tail
(cdr tail
)))
3854 ;; Function not available in XEmacs,
3855 (unless (fboundp 'minibuffer-contents
)
3856 (defun minibuffer-contents ()
3857 "Return the user input in a minbuffer as a string.
3858 The current buffer must be a minibuffer."
3859 (field-string (point-max)))
3861 (defun delete-minibuffer-contents ()
3862 "Delete all user input in a minibuffer.
3863 The current buffer must be a minibuffer."
3864 (delete-field (point-max))))
3866 ;; Function not available in older Emacs (<= 22.1).
3867 (unless (fboundp 'buffer-chars-modified-tick
)
3868 (defun buffer-chars-modified-tick (&optional buffer
)
3869 "Return BUFFER's character-change tick counter.
3870 Each buffer has a character-change tick counter, which is set to the
3871 value of the buffer's tick counter (see `buffer-modified-tick'), each
3872 time text in that buffer is inserted or deleted. By comparing the
3873 values returned by two individual calls of `buffer-chars-modified-tick',
3874 you can tell whether a character change occurred in that buffer in
3875 between these calls. No argument or nil as argument means use current
3877 (with-current-buffer (or buffer
(current-buffer))
3878 (if (listp buffer-undo-list
)
3879 (length buffer-undo-list
)
3880 (buffer-modified-tick)))))
3882 ;; (@* "CUA workaround")
3883 (defadvice cua-delete-region
(around anything-avoid-cua activate
)
3884 (ignore-errors ad-do-it
))
3885 (defadvice copy-region-as-kill
(around anything-avoid-cua activate
)
3887 (ignore-errors ad-do-it
)
3891 ;;(@* "Attribute Documentation")
3892 (defun anything-describe-anything-attribute (anything-attribute)
3893 "Display the full documentation of ANYTHING-ATTRIBUTE (a symbol)."
3894 (interactive (list (intern
3896 "Describe anything attribute: "
3897 (mapcar 'symbol-name anything-additional-attributes
)))))
3898 (with-output-to-temp-buffer "*Help*"
3899 (princ (get anything-attribute
'anything-attrdoc
))))
3901 (anything-document-attribute 'name
"mandatory"
3902 " The name of the source. It is also the heading which appears
3903 above the list of matches from the source. Must be unique. ")
3904 (anything-document-attribute 'header-name
"optional"
3905 " A function returning the display string of the header. Its
3906 argument is the name of the source. This attribute is useful to
3907 add an additional information with the source name. ")
3908 (anything-document-attribute 'candidates
"mandatory if candidates-in-buffer attribute is not provided"
3909 " Specifies how to retrieve candidates from the source. It can
3910 either be a variable name, a function called with no parameters
3911 or the actual list of candidates.
3913 The list must be a list whose members are strings, symbols
3914 or (DISPLAY . REAL) pairs.
3916 In case of (DISPLAY . REAL) pairs, the DISPLAY string is shown
3917 in the Anything buffer, but the REAL one is used as action
3918 argument when the candidate is selected. This allows a more
3919 readable presentation for candidates which would otherwise be,
3920 for example, too long or have a common part shared with other
3921 candidates which can be safely replaced with an abbreviated
3922 string for display purposes.
3924 Note that if the (DISPLAY . REAL) form is used then pattern
3925 matching is done on the displayed string, not on the real
3928 If the candidates have to be retrieved asynchronously (for
3929 example, by an external command which takes a while to run)
3930 then the function should start the external command
3931 asynchronously and return the associated process object.
3932 Anything will take care of managing the process (receiving the
3933 output from it, killing it if necessary, etc.). The process
3934 should return candidates matching the current pattern (see
3935 variable `anything-pattern'.)
3937 Note that currently results from asynchronous sources appear
3938 last in the anything buffer regardless of their position in
3939 `anything-sources'. ")
3940 (anything-document-attribute 'action
"mandatory if type attribute is not provided"
3941 " It is a list of (DISPLAY . FUNCTION) pairs or FUNCTION.
3942 FUNCTION is called with one parameter: the selected candidate.
3944 An action other than the default can be chosen from this list
3945 of actions for the currently selected candidate (by default
3946 with TAB). The DISPLAY string is shown in the completions
3947 buffer and the FUNCTION is invoked when an action is
3948 selected. The first action of the list is the default. ")
3949 (anything-document-attribute 'coerce
"optional"
3950 " It's a function called with one argument: the selected candidate.
3952 This function is intended for type convertion.
3953 In normal case, the selected candidate (string) is passed to action function.
3954 If coerce function is specified, it is called just before action function.
3956 Example: converting string to symbol
3959 (anything-document-attribute 'type
"optional if action attribute is provided"
3960 " Indicates the type of the items the source returns.
3962 Merge attributes not specified in the source itself from
3963 `anything-type-attributes'.
3965 This attribute is implemented by plug-in. ")
3966 (anything-document-attribute 'init
"optional"
3967 " Function called with no parameters when anything is started. It
3968 is useful for collecting current state information which can be
3969 used to create the list of candidates later.
3971 For example, if a source needs to work with the current
3972 directory then it can store its value here, because later
3973 anything does its job in the minibuffer and in the
3974 `anything-buffer' and the current directory can be different
3976 (anything-document-attribute 'delayed-init
"optional"
3977 " Function called with no parameters before candidate function is
3978 called. It is similar with `init' attribute, but its
3979 evaluation is deferred. It is useful to combine with ")
3980 (anything-document-attribute 'match
"optional"
3981 " List of functions called with one parameter: a candidate. The
3982 function should return non-nil if the candidate matches the
3983 current pattern (see variable `anything-pattern').
3985 This attribute allows the source to override the default
3986 pattern matching based on `string-match'. It can be used, for
3987 example, to implement a source for file names and do the
3988 pattern matching on the basename of files, since it's more
3989 likely one is typing part of the basename when searching for a
3990 file, instead of some string anywhere else in its path.
3992 If the list contains more than one function then the list of
3993 matching candidates from the source is constructed by appending
3994 the results after invoking the first function on all the
3995 potential candidates, then the next function, and so on. The
3996 matching candidates supplied by the first function appear first
3997 in the list of results and then results from the other
3998 functions, respectively.
4000 This attribute has no effect for asynchronous sources (see
4001 attribute `candidates'), since they perform pattern matching
4003 (anything-document-attribute 'candidate-transformer
"optional"
4004 " It's a function or a list of functions called with one argument
4005 when the completion list from the source is built. The argument
4006 is the list of candidates retrieved from the source. The
4007 function should return a transformed list of candidates which
4008 will be used for the actual completion. If it is a list of
4009 functions, it calls each function sequentially.
4011 This can be used to transform or remove items from the list of
4014 Note that `candidates' is run already, so the given transformer
4015 function should also be able to handle candidates with (DISPLAY
4017 (anything-document-attribute 'filtered-candidate-transformer
"optional"
4018 " It has the same format as `candidate-transformer', except the
4019 function is called with two parameters: the candidate list and
4022 This transformer is run on the candidate list which is already
4023 filtered by the current pattern. While `candidate-transformer'
4024 is run only once, it is run every time the input pattern is
4027 It can be used to transform the candidate list dynamically, for
4028 example, based on the current pattern.
4030 In some cases it may also be more efficent to perform candidate
4031 transformation here, instead of with `candidate-transformer'
4032 even if this transformation is done every time the pattern is
4033 changed. For example, if a candidate set is very large then
4034 `candidate-transformer' transforms every candidate while only
4035 some of them will actually be dislpayed due to the limit
4036 imposed by `anything-candidate-number-limit'.
4038 Note that `candidates' and `candidate-transformer' is run
4039 already, so the given transformer function should also be able
4040 to handle candidates with (DISPLAY . REAL) format.
4042 This option has no effect for asynchronous sources. (Not yet,
4044 (anything-document-attribute 'action-transformer
"optional"
4045 " It's a function or a list of functions called with two
4046 arguments when the action list from the source is
4047 assembled. The first argument is the list of actions, the
4048 second is the current selection. If it is a list of functions,
4049 it calls each function sequentially.
4051 The function should return a transformed action list.
4053 This can be used to customize the list of actions based on the
4054 currently selected candidate. ")
4055 (anything-document-attribute 'pattern-transformer
"optional"
4056 " It's a function or a list of functions called with one argument
4057 before computing matches. Its argument is `anything-pattern'.
4058 Functions should return transformed `anything-pattern'.
4060 It is useful to change interpretation of `anything-pattern'. ")
4061 (anything-document-attribute 'delayed
"optional"
4062 " Candidates from the source are shown only if the user stops
4063 typing and is idle for `anything-idle-delay' seconds. ")
4064 (anything-document-attribute 'volatile
"optional"
4065 " Indicates the source assembles the candidate list dynamically,
4066 so it shouldn't be cached within a single Anything
4067 invocation. It is only applicable to synchronous sources,
4068 because asynchronous sources are not cached. ")
4069 (anything-document-attribute 'requires-pattern
"optional"
4070 " If present matches from the source are shown only if the
4071 pattern is not empty. Optionally, it can have an integer
4072 parameter specifying the required length of input which is
4073 useful in case of sources with lots of candidates. ")
4074 (anything-document-attribute 'persistent-action
"optional"
4075 " Function called with one parameter; the selected candidate.
4077 An action performed by `anything-execute-persistent-action'.
4078 If none, use the default action. ")
4079 (anything-document-attribute 'candidates-in-buffer
"optional"
4080 " Shortcut attribute for making and narrowing candidates using
4081 buffers. This newly-introduced attribute prevents us from
4082 forgetting to add volatile and match attributes.
4084 See docstring of `anything-candidates-in-buffer'.
4086 (candidates-in-buffer) is equivalent of three attributes:
4087 (candidates . anything-candidates-in-buffer)
4091 (candidates-in-buffer . candidates-function) is equivalent of:
4092 (candidates . candidates-function)
4096 This attribute is implemented by plug-in. ")
4097 (anything-document-attribute 'search
"optional"
4098 " List of functions like `re-search-forward' or `search-forward'.
4099 Buffer search function used by `anything-candidates-in-buffer'.
4100 By default, `anything-candidates-in-buffer' uses `re-search-forward'.
4101 This attribute is meant to be used with
4102 (candidates . anything-candidates-in-buffer) or
4103 (candidates-in-buffer) in short. ")
4104 (anything-document-attribute 'search-from-end
"optional"
4105 " Make `anything-candidates-in-buffer' search from the end of buffer.
4106 If this attribute is specified, `anything-candidates-in-buffer' uses
4107 `re-search-backward' instead. ")
4108 (anything-document-attribute 'get-line
"optional"
4109 " A function like `buffer-substring-no-properties' or `buffer-substring'.
4110 This function converts point of line-beginning and point of line-end,
4111 which represents a candidate computed by `anything-candidates-in-buffer'.
4112 By default, `anything-candidates-in-buffer' uses
4113 `buffer-substring-no-properties'. ")
4114 (anything-document-attribute 'display-to-real
"optional"
4115 " Function called with one parameter; the selected candidate.
4117 The function transforms the selected candidate, and the result
4118 is passed to the action function. The display-to-real
4119 attribute provides another way to pass other string than one
4120 shown in Anything buffer.
4122 Traditionally, it is possible to make candidates,
4123 candidate-transformer or filtered-candidate-transformer
4124 function return a list with (DISPLAY . REAL) pairs. But if REAL
4125 can be generated from DISPLAY, display-to-real is more
4126 convenient and faster. ")
4127 (anything-document-attribute 'real-to-display
"optional"
4128 " Function called with one parameter; the selected candidate.
4130 The inverse of display-to-real attribute.
4132 The function transforms the selected candidate, which is passed
4133 to the action function, for display. The real-to-display
4134 attribute provides the other way to pass other string than one
4135 shown in Anything buffer.
4137 Traditionally, it is possible to make candidates,
4138 candidate-transformer or filtered-candidate-transformer
4139 function return a list with (DISPLAY . REAL) pairs. But if
4140 DISPLAY can be generated from REAL, real-to-display is more
4143 Note that DISPLAY parts returned from candidates /
4144 candidate-transformer are IGNORED as the name `display-to-real'
4146 (anything-document-attribute 'cleanup
"optional"
4147 " Function called with no parameters when *anything* buffer is closed. It
4148 is useful for killing unneeded candidates buffer.
4150 Note that the function is executed BEFORE performing action. ")
4151 (anything-document-attribute 'candidate-number-limit
"optional"
4152 " Override `anything-candidate-number-limit' only for this source. ")
4153 (anything-document-attribute 'accept-empty
"optional"
4154 " Pass empty string \"\" to action function. ")
4155 (anything-document-attribute 'disable-shortcuts
"optional"
4156 " Disable `anything-enable-shortcuts' in current `anything' session.
4158 This attribute is implemented by plug-in. ")
4159 (anything-document-attribute 'dummy
"optional"
4160 " Set `anything-pattern' to candidate. If this attribute is
4161 specified, The candidates attribute is ignored.
4163 This attribute is implemented by plug-in.
4164 This plug-in implies disable-shortcuts plug-in. ")
4165 (anything-document-attribute 'multiline
"optional"
4166 " Enable to selection multiline candidates. ")
4167 (anything-document-attribute 'update
"optional"
4168 " Function called with no parameters when \\<anything-map>\\[anything-force-update] is pressed. ")
4169 (anything-document-attribute 'mode-line
"optional"
4170 " source local `anything-mode-line-string'. (included in `mode-line-format')
4171 It accepts also variable/function name. ")
4172 (anything-document-attribute 'header-line
"optional"
4173 " source local `header-line-format'.
4174 It accepts also variable/function name. ")
4175 (anything-document-attribute 'resume
"optional" " Function called with no parameters when `anything-resume' is started.")
4177 ;; (@* "Bug Report")
4178 (defvar anything-maintainer-mail-address
4179 (concat "rubiki" "tch@ru" "by-lang.org"))
4180 (defvar anything-bug-report-salutation
4181 "Describe bug below, using a precise recipe.
4183 When I executed M-x ...
4185 How to send a bug report:
4186 1) Be sure to use the LATEST version of anything.el.
4187 2) Enable debugger. M-x toggle-debug-on-error or (setq debug-on-error t)
4188 3) Use Lisp version instead of compiled one: (load \"anything.el\")
4189 4) If you got an error, please paste *Backtrace* buffer.
4190 5) Type C-c C-c to send.
4191 # If you are a Japanese, please write in Japanese:-)")
4192 (defvar anything-no-dump-variables
4193 '(anything-candidate-buffer-alist
4194 anything-digit-overlays
4195 anything-help-message
4196 anything-candidate-cache
4198 "Variables not to dump in bug report.")
4200 (defun anything-dumped-variables-in-bug-report ()
4201 (let ((hash (make-hash-table)))
4202 (loop for var in
(apropos-internal "anything-" 'boundp
)
4203 for vname
= (symbol-name var
)
4204 unless
(or (string-match "-map$" vname
)
4205 (string-match "^anything-c-source-" vname
)
4206 (string-match "-hash$" vname
)
4207 (string-match "-face$" vname
)
4208 (memq var anything-no-dump-variables
))
4211 (defun anything-send-bug-report ()
4212 "Send a bug report of anything.el."
4214 (with-current-buffer (or anything-last-buffer
4216 (reporter-submit-bug-report
4217 anything-maintainer-mail-address
4219 (anything-dumped-variables-in-bug-report)
4221 anything-bug-report-salutation
)))
4223 (defun anything-send-bug-report-from-anything ()
4224 "Send a bug report of anything.el in anything session."
4226 (anything-run-after-quit 'anything-send-bug-report
))
4228 ;; (@* "Unit Tests")
4230 (defun* anything-test-candidates
(sources &optional
(input "") (compile-source-functions anything-compile-source-functions-default
))
4231 "Test helper function for anything.
4232 Given pseudo `anything-sources' and `anything-pattern', returns list like
4233 ((\"source name1\" (\"candidate1\" \"candidate2\"))
4234 (\"source name2\" (\"candidate3\" \"candidate4\")))
4236 (let ((anything-test-mode t
)
4237 anything-enable-shortcuts
4238 anything-candidate-cache
4239 (anything-compile-source-functions compile-source-functions
)
4240 anything-before-initialize-hook
4241 anything-after-initialize-hook
4242 anything-update-hook
4243 anything-test-candidate-list
)
4244 (get-buffer-create anything-buffer
)
4246 (anything-initialize-1 nil input sources
)
4248 ;; test-mode spec: select 1st candidate!
4249 (with-current-buffer anything-buffer
4251 (anything-mark-current-line))
4253 anything-test-candidate-list
4254 (anything-cleanup))))
4256 (defmacro anything-test-update
(sources pattern
)
4257 "Test helper macro for anything. It is meant for testing *anything* buffer contents."
4258 `(progn (stub anything-get-sources
=> ,sources
)
4259 (stub anything-log-run-hook
=> nil
)
4260 (stub anything-maybe-fit-frame
=> nil
)
4261 (stub run-with-idle-timer
=> nil
)
4262 (let (anything-test-mode (anything-pattern ,pattern
))
4263 (anything-update))))
4266 ;; (install-elisp "http://www.emacswiki.org/cgi-bin/wiki/download/el-expectations.el")
4267 ;; (install-elisp "http://www.emacswiki.org/cgi-bin/wiki/download/el-mock.el")
4269 (when (fboundp 'expectations
)
4271 (desc "anything-current-buffer")
4272 (expect "__a_buffer"
4273 (with-current-buffer (get-buffer-create "__a_buffer")
4274 (anything-test-candidates '(((name .
"FOO"))) "")
4276 (buffer-name anything-current-buffer
)
4277 (kill-buffer "__a_buffer")
4279 (desc "anything-buffer-file-name")
4280 (expect (regexp "/__a_file__")
4281 (with-current-buffer (get-buffer-create "__a_file__")
4282 (setq buffer-file-name
"/__a_file__")
4283 (anything-test-candidates '(((name .
"FOO"))) "")
4285 anything-buffer-file-name
4286 ;;(kill-buffer "__a_file__")
4288 (desc "anything-interpret-value")
4290 (anything-interpret-value "literal"))
4292 (anything-interpret-value (lambda () "lambda")))
4293 (expect "lambda with source name"
4294 (let ((source '((name .
"lambda with source name"))))
4295 (anything-interpret-value (lambda () anything-source-name
) source
)))
4296 (expect "function symbol"
4297 (flet ((f () "function symbol"))
4298 (anything-interpret-value 'f
)))
4299 (expect "variable symbol"
4300 (let ((v "variable symbol"))
4301 (anything-interpret-value 'v
)))
4302 (expect (error error
*)
4303 (anything-interpret-value 'unbounded-1
))
4304 (desc "anything-compile-sources")
4305 (expect '(((name .
"foo")))
4306 (anything-compile-sources '(((name .
"foo"))) nil
)
4308 (expect '(((name .
"foo") (type . test
) (action . identity
)))
4309 (let ((anything-type-attributes '((test (action . identity
)))))
4310 (anything-compile-sources '(((name .
"foo") (type . test
)))
4311 '(anything-compile-source--type))))
4312 (desc "anything-sources accepts symbols")
4313 (expect '(((name .
"foo")))
4314 (let* ((foo '((name .
"foo"))))
4315 (anything-compile-sources '(foo) nil
)))
4316 (desc "anything-get-sources action")
4317 (expect '(((name .
"Actions") (candidates . actions
)))
4318 (stub anything-action-window
=> t
)
4319 (let (anything-compiled-sources
4320 (anything-sources '(((name .
"Actions") (candidates . actions
)))))
4321 (anything-get-sources)))
4322 (desc "get-buffer-create candidates-buffer")
4323 (expect '(((name .
"many") (init . many-init
)
4324 (candidates-in-buffer . anything-candidates-in-buffer
)
4325 (candidates . anything-candidates-in-buffer
)
4326 (volatile) (match identity
)))
4327 (anything-compile-sources
4328 '(((name .
"many") (init . many-init
)
4329 (candidates-in-buffer . anything-candidates-in-buffer
)))
4330 '(anything-compile-source--candidates-in-buffer)))
4331 (expect '(((name .
"many") (init . many-init
)
4332 (candidates-in-buffer)
4333 (candidates . anything-candidates-in-buffer
)
4334 (volatile) (match identity
)))
4335 (anything-compile-sources
4336 '(((name .
"many") (init . many-init
)
4337 (candidates-in-buffer)))
4338 '(anything-compile-source--candidates-in-buffer)))
4339 (expect '(((name .
"many") (init . many-init
)
4340 (candidates-in-buffer)
4343 (candidates . anything-candidates-in-buffer
)
4344 (volatile) (match identity
)))
4345 (let ((anything-type-attributes '((test (action . identity
)))))
4346 (anything-compile-sources
4347 '(((name .
"many") (init . many-init
)
4348 (candidates-in-buffer)
4350 '(anything-compile-source--type
4351 anything-compile-source--candidates-in-buffer
))))
4353 (desc "anything-get-candidates")
4354 (expect '("foo" "bar")
4355 (anything-get-candidates '((name .
"foo") (candidates "foo" "bar"))))
4356 (expect '("FOO" "BAR")
4357 (anything-get-candidates '((name .
"foo") (candidates "foo" "bar")
4358 (candidate-transformer
4359 .
(lambda (cands) (mapcar 'upcase cands
))))))
4360 (expect '("foo" "bar")
4361 (anything-get-candidates '((name .
"foo")
4362 (candidates .
(lambda () '("foo" "bar"))))))
4363 (expect '("foo" "bar")
4364 (let ((var '("foo" "bar")))
4365 (anything-get-candidates '((name .
"foo")
4366 (candidates . var
)))))
4367 (expect (error error
*)
4368 (anything-get-candidates '((name .
"foo")
4369 (candidates .
"err"))))
4370 (expect (error error
*)
4372 (anything-get-candidates '((name .
"foo")
4373 (candidates . var
)))))
4374 (expect (error error
*)
4375 (anything-get-candidates '((name .
"foo")
4376 (candidates . unDeFined-syMbol
))))
4377 (desc "anything-compute-matches")
4378 (expect '("foo" "bar")
4379 (let ((anything-pattern ""))
4380 (anything-compute-matches '((name .
"FOO") (candidates "foo" "bar") (volatile)))))
4382 (let ((anything-pattern "oo"))
4383 (anything-compute-matches '((name .
"FOO") (candidates "foo" "bar") (volatile)))))
4385 (let ((anything-pattern "^b"))
4386 (anything-compute-matches '((name .
"FOO") (candidates "foo" "bar") (volatile)))))
4388 (let ((anything-pattern "")
4389 (anything-candidate-number-limit 2))
4390 (anything-compute-matches '((name .
"FOO") (candidates "a" "b" "c") (volatile)))))
4392 (let ((anything-pattern ".")
4393 (anything-candidate-number-limit 2))
4394 (anything-compute-matches '((name .
"FOO") (candidates "a" "b" "c") (volatile)))))
4395 (expect '("a" "b" "c")
4396 (let ((anything-pattern "")
4397 anything-candidate-number-limit
)
4398 (anything-compute-matches '((name .
"FOO") (candidates "a" "b" "c") (volatile)))))
4399 (expect '("a" "b" "c")
4400 (let ((anything-pattern "[abc]")
4401 anything-candidate-number-limit
)
4402 (anything-compute-matches '((name .
"FOO") (candidates "a" "b" "c") (volatile)))))
4404 (let ((anything-pattern "[abc]")
4405 anything-candidate-number-limit
)
4406 (anything-compute-matches '((name .
"FOO") (candidates a b c
) (volatile)))))
4407 (expect '(("foo" .
"FOO") ("bar" .
"BAR"))
4408 (let ((anything-pattern ""))
4409 (anything-compute-matches '((name .
"FOO") (candidates ("foo" .
"FOO") ("bar" .
"BAR")) (volatile)))))
4410 (expect '(("foo" .
"FOO"))
4411 (let ((anything-pattern "foo"))
4412 (anything-compute-matches '((name .
"FOO") (candidates ("foo" .
"FOO") ("bar" .
"foo")) (volatile)))))
4413 ;; using anything-test-candidate-list
4414 (desc "anything-test-candidates")
4415 (expect '(("FOO" ("foo" "bar")))
4416 (anything-test-candidates '(((name .
"FOO") (candidates "foo" "bar")))))
4417 (expect '(("FOO" ("bar")))
4418 (anything-test-candidates '(((name .
"FOO") (candidates "foo" "bar"))) "ar"))
4419 (expect '(("T1" ("hoge" "aiue"))
4420 ("T2" ("test" "boke")))
4421 (anything-test-candidates '(((name .
"T1") (candidates "hoge" "aiue"))
4422 ((name .
"T2") (candidates "test" "boke")))))
4423 (expect '(("T1" ("hoge"))
4425 (anything-test-candidates '(((name .
"T1") (candidates "hoge" "aiue"))
4426 ((name .
"T2") (candidates "test" "boke"))) "o"))
4427 (desc "requires-pattern attribute")
4429 (anything-test-candidates '(((name .
"FOO") (candidates "foo" "bar")
4430 (requires-pattern .
1)))))
4431 (expect '(("FOO" ("bar")))
4432 (anything-test-candidates '(((name .
"FOO") (candidates "foo" "bar")
4433 (requires-pattern .
1))) "b"))
4434 (desc "delayed attribute(for test)")
4435 (expect '(("T2" ("boke"))
4437 (anything-test-candidates
4438 '(((name .
"T1") (candidates "hoge" "aiue") (delayed))
4439 ((name .
"T2") (candidates "test" "boke")))
4441 (desc "match attribute(prefix search)")
4442 (expect '(("FOO" ("bar")))
4443 (anything-test-candidates
4444 '(((name .
"FOO") (candidates "foo" "bar")
4445 (match (lambda (c) (string-match (concat "^" anything-pattern
) c
)))))
4448 (anything-test-candidates
4449 '(((name .
"FOO") (candidates "foo" "bar")
4450 (match (lambda (c) (string-match (concat "^" anything-pattern
) c
)))))
4452 (expect "TestSource"
4454 (anything-test-candidates
4455 '(((name .
"TestSource") (candidates "a")
4456 (match (lambda (c) (setq x anything-source-name
)))))
4459 (desc "init attribute")
4460 (expect '(("FOO" ("bar")))
4462 (anything-test-candidates
4463 '(((name .
"FOO") (init .
(lambda () (setq v
'("foo" "bar"))))
4466 (desc "candidate-transformer attribute")
4467 (expect '(("FOO" ("BAR")))
4468 (anything-test-candidates '(((name .
"FOO") (candidates "foo" "bar")
4469 (candidate-transformer
4470 .
(lambda (cands) (mapcar 'upcase cands
)))))
4472 (desc "filtered-candidate-transformer attribute")
4474 (expect '(("FOO" ("BAR")))
4475 (anything-test-candidates '(((name .
"FOO") (candidates "foo" "bar")
4476 (filtered-candidate-transformer
4477 .
(lambda (cands src
) (mapcar 'upcase cands
)))))
4479 (desc "anything-transform-candidates in process")
4480 (expect (mock (anything-composed-funcall-with-source
4481 '((name .
"FOO") (candidates "foo" "bar")
4482 (filtered-candidate-transformer
4483 .
(lambda (cands src
) (mapcar 'upcase cands
))))
4484 (lambda (cands src
) (mapcar 'upcase cands
))
4486 '((name .
"FOO") (candidates "foo" "bar")
4487 (filtered-candidate-transformer
4488 .
(lambda (cands src
) (mapcar 'upcase cands
))))
4490 (stub anything-process-candidate-transformer
=> '("foo" "bar"))
4491 (anything-transform-candidates
4493 '((name .
"FOO") (candidates "foo" "bar")
4494 (filtered-candidate-transformer
4495 .
(lambda (cands src
) (mapcar 'upcase cands
))))
4498 (desc "anything-candidates-in-buffer-1")
4500 (anything-candidates-in-buffer-1
4502 'buffer-substring-no-properties
'(re-search-forward) 50 nil
))
4503 (expect '("foo+" "bar+" "baz+")
4505 (insert "foo+\nbar+\nbaz+\n")
4506 (anything-candidates-in-buffer-1
4508 'buffer-substring-no-properties
'(re-search-forward) 5 nil
)))
4509 (expect '("foo+" "bar+")
4511 (insert "foo+\nbar+\nbaz+\n")
4512 (anything-candidates-in-buffer-1
4514 'buffer-substring-no-properties
'(re-search-forward) 2 nil
)))
4517 (insert "foo+\nbar+\nbaz+\n")
4518 (anything-candidates-in-buffer-1
4519 (current-buffer) "oo\\+"
4520 'buffer-substring-no-properties
'(re-search-forward) 50 nil
)))
4523 (insert "foo+\nbar+\nbaz+\n")
4524 (anything-candidates-in-buffer-1
4525 (current-buffer) "oo+"
4526 #'buffer-substring-no-properties
'(search-forward) 50 nil
)))
4527 (expect '("foo+" "bar+")
4529 (insert "foo+\nbar+\nbaz+\n")
4530 (anything-candidates-in-buffer-1
4531 (current-buffer) "."
4532 'buffer-substring-no-properties
'(re-search-forward) 2 nil
)))
4533 (expect '(("foo+" "FOO+"))
4535 (insert "foo+\nbar+\nbaz+\n")
4536 (anything-candidates-in-buffer-1
4537 (current-buffer) "oo\\+"
4539 (let ((l (buffer-substring-no-properties s e
)))
4540 (list l
(upcase l
))))
4541 '(re-search-forward) 50 nil
)))
4542 (desc "anything-candidates-in-buffer")
4543 (expect '(("TEST" ("foo+" "bar+" "baz+")))
4544 (anything-test-candidates
4547 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
4548 (insert "foo+\nbar+\nbaz+\n"))))
4549 (candidates . anything-candidates-in-buffer
)
4552 (expect '(("TEST" ("foo+" "bar+" "baz+")))
4553 (let (anything-candidate-number-limit)
4554 (anything-test-candidates
4557 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
4558 (insert "foo+\nbar+\nbaz+\n"))))
4559 (candidates . anything-candidates-in-buffer
)
4562 (expect '(("TEST" ("foo+")))
4563 (anything-test-candidates
4566 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
4567 (insert "foo+\nbar+\nbaz+\n"))))
4568 (candidates . anything-candidates-in-buffer
)
4572 ;; BUG remain empty string, but the pattern is rare case.
4573 (expect '(("a" ("" "a" "b")))
4574 (anything-test-candidates
4577 (with-current-buffer (anything-candidate-buffer 'global
)
4578 (insert "a\nb\n"))))
4579 (candidates-in-buffer)))
4581 (desc "search attribute")
4582 (expect '(("TEST" ("foo+")))
4583 (anything-test-candidates
4586 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
4587 (insert "foo+\nbar+\nbaz+\nooo\n"))))
4588 (search search-forward
)
4589 (candidates . anything-candidates-in-buffer
)
4593 (expect '(("TEST" ("foo+" "ooo")))
4594 (anything-test-candidates
4597 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
4598 (insert "foo+\nbar+\nbaz+\nooo\n"))))
4599 (search search-forward re-search-forward
)
4600 (candidates . anything-candidates-in-buffer
)
4604 (expect '(("TEST" ("foo+" "ooo")))
4605 (anything-test-candidates
4608 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
4609 (insert "foo+\nbar+\nbaz+\nooo\n"))))
4610 (search re-search-forward search-forward
)
4611 (candidates . anything-candidates-in-buffer
)
4615 (expect '(("TEST" ("ooo" "foo+")))
4616 (anything-test-candidates
4619 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
4620 (insert "bar+\nbaz+\nooo\nfoo+\n"))))
4621 (search re-search-forward search-forward
)
4622 (candidates . anything-candidates-in-buffer
)
4626 ;; faster exact match
4627 (expect '(("TEST" ("bar+")))
4628 (anything-test-candidates
4631 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
4632 (insert "bar+\nbaz+\nooo\nfoo+\n"))))
4633 (search (lambda (pattern &rest _
)
4634 (and (search-forward (concat "\n" pattern
"\n") nil t
)
4635 (forward-line -
1))))
4636 (candidates . anything-candidates-in-buffer
)
4640 ;; faster prefix match
4641 (expect '(("TEST" ("bar+")))
4642 (anything-test-candidates
4645 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
4646 (insert "bar+\nbaz+\nooo\nfoo+\n"))))
4647 (search (lambda (pattern &rest _
)
4648 (search-forward (concat "\n" pattern
) nil t
)))
4649 (candidates . anything-candidates-in-buffer
)
4653 (desc "anything-current-buffer-is-modified")
4654 (expect '(("FOO" ("modified")))
4655 (let ((sources '(((name .
"FOO")
4658 (if (anything-current-buffer-is-modified)
4660 '("unmodified"))))))))
4662 (clrhash anything-tick-hash
)
4664 (anything-test-candidates sources
))))
4665 (expect '(("FOO" ("unmodified")))
4666 (let ((sources '(((name .
"FOO")
4669 (if (anything-current-buffer-is-modified)
4671 '("unmodified"))))))))
4673 (clrhash anything-tick-hash
)
4675 (anything-test-candidates sources
)
4676 (anything-test-candidates sources
))))
4677 (expect '(("FOO" ("modified")))
4678 (let ((sources '(((name .
"FOO")
4681 (if (anything-current-buffer-is-modified)
4683 '("unmodified"))))))))
4685 (clrhash anything-tick-hash
)
4687 (anything-test-candidates sources
)
4689 (anything-test-candidates sources
))))
4690 (expect '(("BAR" ("modified")))
4691 (let ((sources1 '(((name .
"FOO")
4694 (if (anything-current-buffer-is-modified)
4696 '("unmodified")))))))
4697 (sources2 '(((name .
"BAR")
4700 (if (anything-current-buffer-is-modified)
4702 '("unmodified"))))))))
4704 (clrhash anything-tick-hash
)
4706 (anything-test-candidates sources1
)
4707 (anything-test-candidates sources2
))))
4708 (expect '(("FOO" ("unmodified")))
4709 (let ((sources1 '(((name .
"FOO")
4712 (if (anything-current-buffer-is-modified)
4714 '("unmodified")))))))
4715 (sources2 '(((name .
"BAR")
4718 (if (anything-current-buffer-is-modified)
4720 '("unmodified"))))))))
4722 (clrhash anything-tick-hash
)
4724 (anything-test-candidates sources1
)
4725 (anything-test-candidates sources2
)
4726 (anything-test-candidates sources1
))))
4727 (expect '(("BAR" ("unmodified")))
4728 (let ((sources1 '(((name .
"FOO")
4731 (if (anything-current-buffer-is-modified)
4733 '("unmodified")))))))
4734 (sources2 '(((name .
"BAR")
4737 (if (anything-current-buffer-is-modified)
4739 '("unmodified"))))))))
4741 (clrhash anything-tick-hash
)
4743 (anything-test-candidates sources1
)
4744 (anything-test-candidates sources2
)
4745 (anything-test-candidates sources2
))))
4746 (expect '(("BAR" ("modified")))
4747 (let ((sources1 '(((name .
"FOO")
4750 (if (anything-current-buffer-is-modified)
4752 '("unmodified")))))))
4753 (sources2 '(((name .
"BAR")
4756 (if (anything-current-buffer-is-modified)
4758 '("unmodified"))))))))
4760 (clrhash anything-tick-hash
)
4762 (anything-test-candidates sources1
)
4763 (anything-test-candidates sources2
)
4765 (anything-test-candidates sources2
)))))
4766 (desc "anything-source-name")
4769 (anything-test-candidates '(((name .
"FOO")
4771 .
(lambda () (setq v anything-source-name
)))
4772 (candidates "ok"))))
4776 (anything-test-candidates '(((name .
"FOO")
4779 (setq v anything-source-name
)
4784 (anything-test-candidates '(((name .
"FOO")
4786 (candidate-transformer
4788 (setq v anything-source-name
)
4793 (anything-test-candidates '(((name .
"FOO")
4795 (filtered-candidate-transformer
4797 (setq v anything-source-name
)
4802 (anything-test-candidates '(((name .
"FOO")
4806 (setq v anything-source-name
)
4808 (action . identity
))))
4809 (anything-execute-selection-action)
4811 (desc "anything-candidate-buffer create")
4812 (expect " *anything candidates:FOO*"
4813 (let* (anything-candidate-buffer-alist
4814 (anything-source-name "FOO")
4815 (buf (anything-candidate-buffer 'global
)))
4816 (prog1 (buffer-name buf
)
4817 (kill-buffer buf
))))
4818 (expect " *anything candidates:FOO*aTestBuffer"
4819 (let* (anything-candidate-buffer-alist
4820 (anything-source-name "FOO")
4821 (anything-current-buffer (get-buffer-create "aTestBuffer"))
4822 (buf (anything-candidate-buffer 'local
)))
4823 (prog1 (buffer-name buf
)
4824 (kill-buffer anything-current-buffer
)
4825 (kill-buffer buf
))))
4827 (let (anything-candidate-buffer-alist
4828 (anything-source-name "FOO") buf
)
4829 (with-current-buffer (anything-candidate-buffer 'global
)
4831 (setq buf
(anything-candidate-buffer 'global
))
4832 (prog1 (buffer-size buf
)
4833 (kill-buffer buf
))))
4834 (desc "anything-candidate-buffer get-buffer")
4835 (expect " *anything candidates:FOO*"
4836 (let* (anything-candidate-buffer-alist
4837 (anything-source-name "FOO")
4838 (buf (anything-candidate-buffer 'global
)))
4839 (prog1 (buffer-name (anything-candidate-buffer))
4840 (kill-buffer buf
))))
4841 (expect " *anything candidates:FOO*aTestBuffer"
4842 (let* (anything-candidate-buffer-alist
4843 (anything-source-name "FOO")
4844 (anything-current-buffer (get-buffer-create "aTestBuffer"))
4845 (buf (anything-candidate-buffer 'local
)))
4846 (prog1 (buffer-name (anything-candidate-buffer))
4847 (kill-buffer anything-current-buffer
)
4848 (kill-buffer buf
))))
4849 (expect " *anything candidates:FOO*"
4850 (let* (anything-candidate-buffer-alist
4851 (anything-source-name "FOO")
4852 (buf-local (anything-candidate-buffer 'local
))
4853 (buf-global (anything-candidate-buffer 'global
)))
4854 (prog1 (buffer-name (anything-candidate-buffer))
4855 (kill-buffer buf-local
)
4856 (kill-buffer buf-global
))))
4857 (expect " *anything candidates:FOO*aTestBuffer"
4858 (let* (anything-candidate-buffer-alist
4859 (anything-source-name "FOO")
4860 (anything-current-buffer (get-buffer-create "aTestBuffer"))
4861 (buf-global (anything-candidate-buffer 'global
))
4862 (buf-local (anything-candidate-buffer 'local
)))
4863 (prog1 (buffer-name (anything-candidate-buffer))
4864 (kill-buffer buf-local
)
4865 (kill-buffer buf-global
))))
4867 (let* (anything-candidate-buffer-alist
4868 (anything-source-name "NOP__"))
4869 (anything-candidate-buffer)))
4870 (desc "anything-candidate-buffer register-buffer")
4871 (expect " *anything test candidates*"
4872 (let (anything-candidate-buffer-alist
4873 (buf (get-buffer-create " *anything test candidates*")))
4874 (with-current-buffer buf
4876 (prog1 (buffer-name (anything-candidate-buffer buf
))
4877 (kill-buffer (current-buffer))))))
4878 (expect " *anything test candidates*"
4879 (let (anything-candidate-buffer-alist
4880 (buf (get-buffer-create " *anything test candidates*")))
4881 (with-current-buffer buf
4883 (anything-candidate-buffer buf
)
4884 (prog1 (buffer-name (anything-candidate-buffer))
4885 (kill-buffer (current-buffer))))))
4887 (let (anything-candidate-buffer-alist
4888 (buf (get-buffer-create " *anything test candidates*")))
4889 (with-current-buffer buf
4891 (anything-candidate-buffer buf
)
4892 (prog1 (buffer-string)
4893 (kill-buffer (current-buffer))))))
4895 (let (anything-candidate-buffer-alist
4896 (anything-source-name "foo")
4897 (buf1 (get-buffer-create "buf1"))
4898 (buf2 (get-buffer-create "buf2")))
4899 (anything-candidate-buffer buf1
)
4900 (anything-candidate-buffer buf2
)
4901 (prog1 (buffer-name (anything-candidate-buffer buf1
))
4903 (kill-buffer buf2
))))
4904 (desc "action attribute")
4906 (anything-test-candidates
4909 (action ("identity" . identity
)))))
4910 (anything-execute-selection-action))
4912 (anything-test-candidates
4915 (action ("identity" .
(lambda (c) (identity c
)))))))
4916 (anything-execute-selection-action))
4917 (desc "anything-get-default-action")
4919 (anything-get-default-action '(("upcase" . upcase
))))
4921 (anything-get-default-action '(("downcase" . downcase
))))
4922 (expect (lambda (x) (capitalize x
))
4923 (anything-get-default-action (lambda (x) (capitalize x
))))
4925 (anything-get-default-action 'identity
))
4926 (desc "anything-execute-selection-action")
4928 (anything-execute-selection-action
4929 "foo" '(("upcase" . upcase
)) nil
))
4931 (anything-execute-selection-action
4932 "foo" '(("upcase" .
(lambda (c) (upcase c
)))) nil
))
4934 (desc "display-to-real attribute")
4936 (anything-test-candidates
4939 (display-to-real . upcase
)
4940 (action ("identity" . identity
)))))
4941 (anything-execute-selection-action))
4942 (desc "cleanup test")
4945 (anything-test-candidates
4947 (cleanup .
(lambda () (setq v
'cleaned
))))))
4949 (desc "anything-get-current-source")
4950 ;; in init/candidates/action/candidate-transformer/filtered-candidate-transformer
4951 ;; display-to-real/cleanup function
4955 (anything-funcall-with-source '((name .
"FOO")) 'anything-get-current-source
)))
4959 (anything-test-candidates
4961 (init .
(lambda () (setq v
(anything-get-current-source)))))))
4962 (assoc-default 'name v
)))
4966 (anything-test-candidates
4968 (candidates .
(lambda () (setq v
(anything-get-current-source)) '("a"))))))
4969 (assoc-default 'name v
)))
4973 (anything-test-candidates
4977 .
(lambda (c) (setq v
(anything-get-current-source)) c
)))))
4978 (anything-execute-selection-action)
4979 (assoc-default 'name v
)))
4980 ;; candidate-transformer
4983 (anything-test-candidates
4986 (candidate-transformer
4987 .
(lambda (c) (setq v
(anything-get-current-source)) c
)))))
4988 (assoc-default 'name v
)))
4989 ;; filtered-candidate-transformer
4992 (anything-test-candidates
4995 (filtered-candidate-transformer
4996 .
(lambda (c s
) (setq v
(anything-get-current-source)) c
)))))
4997 (assoc-default 'name v
)))
4998 ;; action-transformer
5001 (anything-test-candidates
5005 .
(lambda (a c
) (setq v
(anything-get-current-source)) a
))
5006 (action . identity
))))
5007 (anything-execute-selection-action)
5008 (assoc-default 'name v
)))
5012 (anything-test-candidates
5014 (init .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
5016 (candidates-in-buffer)
5018 .
(lambda (c) (setq v
(anything-get-current-source)) c
))
5019 (action . identity
))))
5020 (anything-execute-selection-action)
5021 (assoc-default 'name v
)))
5025 (anything-test-candidates
5029 .
(lambda () (setq v
(anything-get-current-source)))))))
5030 (assoc-default 'name v
)))
5031 ;; candidates are displayed
5033 (anything-test-candidates
5036 (action ("identity" . identity
)))))
5037 (assoc-default 'name
(anything-get-current-source)))
5038 (desc "anything-attr")
5040 (anything-funcall-with-source
5043 (anything-attr 'name
))))
5046 (anything-test-candidates
5049 (init .
(lambda () (setq v
(anything-attr 'hoge
))))
5054 (anything-test-candidates
5056 (init .
(lambda () (setq v
(anything-attr 'hoge
))))
5061 (anything-test-candidates
5063 (hoge) ;INCOMPATIBLE!
5064 (init .
(lambda () (setq v
(anything-attr 'hoge
))))
5067 (desc "anything-attr*")
5069 (let (v (value1 "generic"))
5070 (anything-test-candidates
5073 (init .
(lambda () (setq v
(anything-attr* 'hoge
)))))))
5075 (desc "anything-attr-defined")
5078 (anything-test-candidates
5081 (init .
(lambda () (setq v
(anything-attr-defined 'hoge
))))
5086 (anything-test-candidates
5088 (init .
(lambda () (setq v
(anything-attr-defined 'hoge
))))
5091 (desc "anything-attrset")
5092 (expect '((name .
"FOO") (hoge .
77))
5093 (let ((src '((name .
"FOO") (hoge))))
5094 (anything-attrset 'hoge
77 src
)
5097 (anything-attrset 'hoge
77 '((name .
"FOO") (hoge))))
5099 (expect '((name .
"FOO") (hoge .
77))
5100 (let ((src '((name .
"FOO") (hoge .
1))))
5101 (anything-attrset 'hoge
77 src
)
5104 (expect '((name .
"FOO") (hoge .
77) (x))
5105 (let ((src '((name .
"FOO") (x))))
5106 (anything-attrset 'hoge
77 src
)
5109 (anything-attrset 'hoge
77 '((name .
"FOO"))))
5110 (desc "anything-preselect")
5113 (with-current-buffer (anything-create-anything-buffer t
)
5114 (let ((anything-pattern "")
5115 (anything-test-mode t
))
5116 (anything-process-source '((name .
"test")
5117 (candidates "hoge" "foo" "bar")))
5118 (anything-preselect "foo")
5119 (anything-get-selection))))
5122 (with-current-buffer (anything-create-anything-buffer t
)
5123 (let ((anything-pattern "")
5124 (anything-test-mode t
))
5125 (anything-process-source '((name .
"test")
5126 (candidates "hoge" "foo" "bar")))
5127 (anything-preselect "fo+")
5128 (anything-get-selection))))
5129 ;; no match -> first entry
5131 (with-current-buffer (anything-create-anything-buffer t
)
5132 (let ((anything-pattern "")
5133 (anything-test-mode t
))
5134 (anything-process-source '((name .
"test")
5135 (candidates "hoge" "foo" "bar")))
5136 (anything-preselect "not found")
5137 (anything-get-selection))))
5138 (desc "anything-check-new-input")
5139 (expect "newpattern"
5140 (stub anything-update
)
5141 (stub anything-action-window
)
5142 (let ((anything-pattern "pattern"))
5143 (anything-check-new-input "newpattern")
5145 ;; anything-input == nil when action window is available
5147 (stub anything-update
)
5148 (stub anything-action-window
=> t
)
5149 (let ((anything-pattern "pattern")
5151 (anything-check-new-input "newpattern")
5153 ;; anything-input == anything-pattern unless action window is available
5154 (expect "newpattern"
5155 (stub anything-update
)
5156 (stub anything-action-window
=> nil
)
5157 (let ((anything-pattern "pattern")
5159 (anything-check-new-input "newpattern")
5161 (expect (mock (anything-update))
5162 (stub anything-action-window
)
5163 (let (anything-pattern)
5164 (anything-check-new-input "foo")))
5165 (desc "anything-update")
5166 (expect (mock (anything-process-source '((name .
"1"))))
5167 (anything-test-update '(((name .
"1"))) ""))
5168 ;; (find-function 'anything-update)
5169 ;; TODO el-mock.el should express 2nd call of function.
5170 ;; (expect (mock (anything-process-source '((name . "2"))))
5171 ;; (stub anything-get-sources => '(((name . "1")) ((name . "2"))))
5172 ;; (stub anything-log-run-hook)
5173 ;; (stub anything-maybe-fit-frame)
5174 ;; (stub run-with-idle-timer)
5175 ;; (anything-update))
5176 (expect (mock (run-with-idle-timer * nil
'anything-process-delayed-sources
5177 '(((name .
"2") (delayed)))))
5178 (stub anything-get-sources
=> '(((name .
"1"))
5179 ((name .
"2") (delayed))))
5180 (stub anything-log-run-hook
)
5181 (stub anything-maybe-fit-frame
)
5182 (let ((anything-pattern "") anything-test-mode
)
5185 (desc "requires-pattern attribute")
5186 (expect (not-called anything-process-source
)
5187 (anything-test-update '(((name .
"1") (requires-pattern))) ""))
5188 (expect (not-called anything-process-source
)
5189 (anything-test-update '(((name .
"1") (requires-pattern .
3))) "xx"))
5191 (desc "anything-normalize-sources")
5192 (expect '(anything-c-source-test)
5193 (anything-normalize-sources 'anything-c-source-test
))
5194 (expect '(anything-c-source-test)
5195 (anything-normalize-sources '(anything-c-source-test)))
5196 (expect '(anything-c-source-test)
5197 (let ((anything-sources '(anything-c-source-test)))
5198 (anything-normalize-sources nil
)))
5199 (expect '(((name .
"test")))
5200 (anything-normalize-sources '((name .
"test"))))
5201 (expect '(((name .
"test")))
5202 (anything-normalize-sources '(((name .
"test")))))
5203 (desc "anything-get-action")
5204 (expect '(("identity" . identity
))
5205 (stub buffer-size
=> 1)
5206 (stub anything-get-current-source
=> '((name .
"test")
5207 (action ("identity" . identity
))))
5208 (anything-get-action))
5210 (stub buffer-size
=> 1)
5211 (stub anything-get-current-source
=> '((name .
"test")
5212 (action . identity
)))
5213 (anything-get-action))
5214 (expect '((("identity" . identity
)) "action-transformer is called")
5215 (stub buffer-size
=> 1)
5216 (stub anything-get-current-source
5217 => '((name .
"test")
5218 (action ("identity" . identity
))
5220 .
(lambda (actions selection
)
5221 (list actions selection
)))))
5222 (stub anything-get-selection
=> "action-transformer is called")
5223 (anything-get-action))
5224 (desc "anything-select-nth-action")
5225 (expect (error error
*)
5226 (stub anything-get-selection
=> nil
)
5227 (anything-select-nth-action 0))
5228 (desc "anything-get-nth-action")
5230 (anything-get-nth-action 2 '(("0" . car
) ("1" . cdr
) ("2" . cadr
))))
5231 (expect (error error
*)
5232 (anything-get-nth-action 2 '(("0" . car
))))
5234 (anything-get-nth-action 0 'identity
))
5235 (expect (error error
*)
5236 (anything-get-nth-action 1 'identity
))
5237 (expect (error error
*)
5238 (anything-get-nth-action 0 'unbound-function-xxx
))
5239 (expect (error error
*)
5240 (anything-get-nth-action 0 "invalid data"))
5241 (desc "anything-funcall-foreach")
5242 (expect (mock (upcase "foo"))
5243 (stub anything-get-sources
=> '(((init .
(lambda () (upcase "foo"))))))
5244 (anything-funcall-foreach 'init
))
5245 (expect (mock (downcase "bar"))
5246 (stub anything-get-sources
=> '(((init .
(lambda () (upcase "foo"))))
5247 ((init .
(lambda () (downcase "bar"))))))
5248 (anything-funcall-foreach 'init
))
5249 (expect (not-called anything-funcall-with-source
)
5250 (stub anything-get-sources
=> '(((init .
(lambda () (upcase "foo"))))))
5251 (anything-funcall-foreach 'not-found
))
5252 ;; TODO anything-select-with-digit-shortcut test
5253 (desc "anything-get-cached-candidates")
5254 (expect '("cached" "version")
5255 (let ((anything-candidate-cache '(("test" "cached" "version"))))
5256 (anything-get-cached-candidates '((name .
"test")
5257 (candidates "new")))))
5259 (let ((anything-candidate-cache '(("other" "cached" "version"))))
5260 (anything-get-cached-candidates '((name .
"test")
5261 (candidates "new")))))
5262 (expect '(("test" "new")
5263 ("other" "cached" "version"))
5264 (let ((anything-candidate-cache '(("other" "cached" "version"))))
5265 (anything-get-cached-candidates '((name .
"test")
5266 (candidates "new")))
5267 anything-candidate-cache
))
5268 (expect '(("other" "cached" "version"))
5269 (let ((anything-candidate-cache '(("other" "cached" "version"))))
5270 (anything-get-cached-candidates '((name .
"test")
5273 anything-candidate-cache
))
5274 ;; TODO when candidates == process
5275 ;; TODO anything-output-filter
5276 (desc "candidate-number-limit attribute")
5278 (let ((anything-pattern "")
5279 (anything-candidate-number-limit 20))
5280 (anything-compute-matches '((name .
"FOO") (candidates "a" "b" "c")
5281 (candidate-number-limit .
2) (volatile)))))
5283 (let ((anything-pattern "[abc]")
5284 (anything-candidate-number-limit 20))
5285 (anything-compute-matches '((name .
"FOO") (candidates "a" "b" "c")
5286 (candidate-number-limit .
2) (volatile)))))
5287 (expect '("a" "b" "c" "d")
5288 (let ((anything-pattern "[abcd]")
5289 (anything-candidate-number-limit 2))
5290 (anything-compute-matches '((name .
"FOO") (candidates "a" "b" "c" "d")
5291 (candidate-number-limit) (volatile)))))
5292 (expect '(("TEST" ("a" "b" "c")))
5293 (let ((anything-candidate-number-limit 2))
5294 (anything-test-candidates
5297 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
5298 (insert "a\nb\nc\nd\n"))))
5299 (candidates . anything-candidates-in-buffer
)
5301 (candidate-number-limit .
3)
5303 (expect '(("TEST" ("a" "b" "c")))
5304 (let ((anything-candidate-number-limit 2))
5305 (anything-test-candidates
5308 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
5309 (insert "a\nb\nc\nd\n"))))
5310 (candidates . anything-candidates-in-buffer
)
5312 (candidate-number-limit .
3)
5315 (desc "multiple init")
5318 (anything-test-candidates
5320 (init (lambda () (setq a
1))
5321 (lambda () (setq b
2))))))
5325 (anything-test-candidates
5327 (init (lambda () (setq a
1))))))
5329 (desc "multiple cleanup")
5332 (anything-test-candidates
5334 (cleanup (lambda () (setq a
1))
5335 (lambda () (setq b
2))))))
5337 (desc "anything-mklist")
5339 (anything-mklist 1))
5341 (anything-mklist '(2)))
5342 (expect '((lambda ()))
5343 (anything-mklist (lambda ())))
5344 (desc "anything-before-initialize-hook")
5346 (let ((anything-before-initialize-hook '((lambda () (setq v
'called
))))
5348 (anything-initialize)
5350 (desc "anything-after-initialize-hook")
5352 (let ((anything-before-initialize-hook
5353 '((lambda () (setq v
'(a)))))
5354 (anything-after-initialize-hook
5355 '((lambda () (setq v
(cons 'b v
)))))
5357 (anything-initialize)
5360 (let ((anything-after-initialize-hook
5361 '((lambda () (setq v
(buffer-size (get-buffer anything-buffer
))))))
5363 (anything-initialize)
5365 (desc "get-line attribute")
5366 (expect '(("TEST" ("FOO+")))
5367 (anything-test-candidates
5370 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
5371 (insert "foo+\nbar+\nbaz+\n"))))
5372 (candidates-in-buffer)
5373 (get-line .
(lambda (s e
) (upcase (buffer-substring-no-properties s e
))))))
5375 (desc "with-anything-restore-variables")
5378 (anything-restored-variables '(a b
)))
5379 (with-anything-restore-variables
5382 (desc "anything-cleanup-hook")
5384 (let ((anything-cleanup-hook
5385 '((lambda () (setq v
'called
))))
5389 (desc "with-anything-display-same-window")
5391 (save-window-excursion
5392 (delete-other-windows)
5395 (let ((buf (get-buffer-create " tmp"))
5396 (win (selected-window)))
5397 (with-anything-display-same-window
5398 (display-buffer buf
)
5399 (eq win
(get-buffer-window buf
))))))
5401 (save-window-excursion
5402 (delete-other-windows)
5405 (let ((buf (get-buffer-create " tmp"))
5406 (win (selected-window)))
5407 (with-anything-display-same-window
5409 (eq win
(get-buffer-window buf
))))))
5411 (save-window-excursion
5412 (delete-other-windows)
5415 (let ((buf (get-buffer-create " tmp"))
5416 (win (selected-window)))
5417 (with-anything-display-same-window
5418 (switch-to-buffer buf
)
5419 (eq win
(get-buffer-window buf
))))))
5421 (save-window-excursion
5422 (delete-other-windows)
5423 (let ((buf (get-buffer-create " tmp"))
5424 (win (selected-window)))
5425 (with-anything-display-same-window
5426 (display-buffer buf
)
5427 (eq win
(get-buffer-window buf
))))))
5429 (save-window-excursion
5430 (delete-other-windows)
5431 (let ((buf (get-buffer-create " tmp"))
5432 (win (selected-window)))
5433 (with-anything-display-same-window
5435 (eq win
(get-buffer-window buf
))))))
5436 (desc "search-from-end attribute")
5437 (expect '(("TEST" ("baz+" "bar+" "foo+")))
5438 (anything-test-candidates
5441 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
5442 (insert "foo+\nbar+\nbaz+\n"))))
5443 (candidates-in-buffer)
5444 (search-from-end)))))
5445 (expect '(("TEST" ("baz+" "bar+" "foo+")))
5446 (anything-test-candidates
5449 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
5450 (insert "foo+\nbar+\nbaz+\n"))))
5451 (candidates-in-buffer)
5454 (expect '(("TEST" ("baz+" "bar+")))
5455 (anything-test-candidates
5458 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
5459 (insert "foo+\nbar+\nbaz+\n"))))
5460 (candidates-in-buffer)
5462 (candidate-number-limit .
2)))))
5463 (expect '(("TEST" ("baz+" "bar+")))
5464 (anything-test-candidates
5467 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
5468 (insert "foo+\nbar+\nbaz+\n"))))
5469 (candidates-in-buffer)
5471 (candidate-number-limit .
2)))
5473 (expect '(("a" ("c2" "c1")))
5474 (anything-test-candidates
5477 (with-current-buffer (anything-candidate-buffer 'global
)
5478 (insert "c1\nc2\n"))))
5480 (candidates-in-buffer)))))
5481 ;; BUG remain empty string, but the pattern is rare case.
5482 (expect '(("a" ("c" "b" "a" "")))
5483 (anything-test-candidates
5486 (with-current-buffer (anything-candidate-buffer 'global
)
5487 (insert "a\nb\nc\n"))))
5489 (candidates-in-buffer)))
5491 (desc "header-name attribute")
5492 (expect "original is transformed"
5493 (anything-test-update '(((name .
"original")
5497 (format "%s is transformed" name
)))))
5499 (with-current-buffer (anything-buffer-get)
5501 (overlay-get (car (overlays-at (1+(point-min)))) 'display
)))
5502 (desc "volatile and match attribute")
5503 ;; candidates function is called once per `anything-process-delayed-sources'
5506 (anything-test-candidates '(((name .
"test")
5507 (candidates .
(lambda () (incf v
) '("ok")))
5509 (match identity identity identity
)))
5512 (desc "accept-empty attribute")
5514 (anything-test-candidates
5515 '(((name .
"test") (candidates "") (action . identity
))))
5516 (anything-execute-selection-action))
5518 (anything-test-candidates
5519 '(((name .
"test") (candidates "") (action . identity
) (accept-empty))))
5520 (anything-execute-selection-action))
5521 (desc "anything-tick-hash")
5523 (with-current-buffer (get-buffer-create " *00create+*")
5524 (puthash " *00create+*/xxx" 1 anything-tick-hash
)
5525 (kill-buffer (current-buffer)))
5526 (gethash " *00create+*/xxx" anything-tick-hash
))
5527 (desc "anything-execute-action-at-once-if-once")
5529 (let ((anything-execute-action-at-once-if-one t
))
5530 (anything '(((name .
"one test1")
5532 (action . upcase
))))))
5534 (let ((anything-execute-action-at-once-if-one t
))
5535 (anything '(((name .
"one test2")
5536 (candidates "hoge" "any")
5540 (expect (mock (read-string "word: " nil
))
5541 (let ((anything-execute-action-at-once-if-one t
))
5542 (anything '(((name .
"one test3")
5543 (candidates "hoge" "foo" "bar")
5544 (action . identity
)))
5546 (desc "anything-quit-if-no-candidate")
5548 (let ((anything-quit-if-no-candidate t
))
5549 (anything '(((name .
"zero test1") (candidates) (action . upcase
))))))
5551 (let (v (anything-quit-if-no-candidate (lambda () (setq v
'called
))))
5552 (anything '(((name .
"zero test2") (candidates) (action . upcase
))))
5554 (desc "real-to-display attribute")
5555 (expect '(("test" (("DDD" .
"ddd"))))
5556 (anything-test-candidates '(((name .
"test")
5558 (real-to-display . upcase
)
5559 (action . identity
)))))
5560 (expect '(("test" (("DDD" .
"ddd"))))
5561 (anything-test-candidates '(((name .
"test")
5562 (candidates ("ignored" .
"ddd"))
5563 (real-to-display . upcase
)
5564 (action . identity
)))))
5565 (expect '(("Commands" (("xxxhoge" .
"hoge") ("xxxboke" .
"boke"))))
5566 (anything-test-candidates '(((name .
"Commands")
5569 (real-to-display .
(lambda (x) (concat "xxx" x
)))
5570 (action . identity
)))
5572 (expect "test\nDDD\n"
5573 (anything-test-update '(((name .
"test")
5575 (real-to-display . upcase
)
5576 (action . identity
)))
5578 (with-current-buffer (anything-buffer-get) (buffer-string)))
5579 (desc "real-to-display and candidate-transformer attribute")
5580 (expect '(("test" (("DDD" .
"ddd"))))
5581 (anything-test-candidates
5584 (candidate-transformer (lambda (cands) (mapcar (lambda (c) (cons "X" c
)) cands
)))
5585 (real-to-display . upcase
)
5586 (action . identity
)))))
5587 (expect "test\nDDD\n"
5588 (anything-test-update
5591 (candidate-transformer (lambda (cands) (mapcar (lambda (c) (cons "X" c
)) cands
)))
5592 (real-to-display . upcase
)
5593 (action . identity
)))
5595 (with-current-buffer (anything-buffer-get) (buffer-string)))
5596 (desc "real-to-display and candidates-in-buffer")
5597 (expect '(("test" (("A" .
"a") ("B" .
"b"))))
5598 (anything-test-candidates
5601 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
5603 (insert "a\nb\n"))))
5604 (candidates-in-buffer)
5605 (real-to-display . upcase
)
5606 (action . identity
)))))
5607 (expect "test\nA\nB\n"
5612 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
5614 (insert "a\nb\n"))))
5615 (candidates-in-buffer)
5616 (real-to-display . upcase
)
5617 (action . identity
))))
5618 (with-current-buffer (anything-buffer-get) (buffer-string)))
5619 (desc "Symbols are acceptable as candidate.")
5620 (expect '(("test" (sym "str")))
5621 (anything-test-candidates
5623 (candidates sym
"str")))))
5624 (expect '(("test" ((sym . realsym
) ("str" .
"realstr"))))
5625 (anything-test-candidates
5627 (candidates (sym . realsym
) ("str" .
"realstr"))))))
5628 (expect '(("test" (sym)))
5629 (anything-test-candidates
5631 (candidates sym
"str")))
5633 (expect '(("test" ("str")))
5634 (anything-test-candidates
5636 (candidates sym
"str")))
5638 (expect '(("test" ((sym . realsym
))))
5639 (anything-test-candidates
5641 (candidates (sym . realsym
) ("str" .
"realstr"))))
5643 (expect '(("test" (("str" .
"realstr"))))
5644 (anything-test-candidates
5646 (candidates (sym . realsym
) ("str" .
"realstr"))))
5648 (desc "multiple transformers")
5649 (expect '(("test" ("<FOO>")))
5650 (anything-test-candidates
5653 (candidate-transformer
5655 (anything-compose (list cands
)
5656 (list (lambda (c) (mapcar 'upcase c
))
5657 (lambda (c) (list (concat "<" (car c
) ">")))))))))))
5659 (anything-composed-funcall-with-source
5661 (list (lambda (c) (mapcar 'upcase c
))
5662 (lambda (c) (list (concat "<" (car c
) ">"))))
5665 (expect '(("test" ("<FOO>")))
5666 (anything-test-candidates
5669 (candidate-transformer
5670 (lambda (c) (mapcar 'upcase c
))
5671 (lambda (c) (list (concat "<" (car c
) ">"))))))))
5672 (expect '(("test" ("<BAR>")))
5673 (anything-test-candidates
5676 (filtered-candidate-transformer
5677 (lambda (c s
) (mapcar 'upcase c
))
5678 (lambda (c s
) (list (concat "<" (car c
) ">"))))))))
5679 (expect '(("find-file" . find-file
)
5680 ("view-file" . view-file
))
5682 (stub anything-get-current-source
5683 => '((name .
"test")
5689 (list (lambda (a s
) (push '("view-file" . view-file
) a
))
5690 (lambda (a s
) (push '("find-file" . find-file
) a
))))))))
5691 (anything-get-action))
5692 (expect '(("find-file" . find-file
)
5693 ("view-file" . view-file
))
5695 (stub anything-get-current-source
5696 => '((name .
"test")
5699 (lambda (a s
) (push '("view-file" . view-file
) a
))
5700 (lambda (a s
) (push '("find-file" . find-file
) a
)))))
5701 (anything-get-action))
5702 (desc "define-anything-type-attribute")
5703 (expect '((file (action . find-file
)))
5704 (let (anything-type-attributes)
5705 (define-anything-type-attribute 'file
'((action . find-file
)))
5706 anything-type-attributes
))
5707 (expect '((file (action . find-file
)))
5708 (let ((anything-type-attributes '((file (action . view-file
)))))
5709 (define-anything-type-attribute 'file
'((action . find-file
)))
5710 anything-type-attributes
))
5711 (expect '((file (action . find-file
))
5712 (buffer (action . switch-to-buffer
)))
5713 (let (anything-type-attributes)
5714 (define-anything-type-attribute 'buffer
'((action . switch-to-buffer
)))
5715 (define-anything-type-attribute 'file
'((action . find-file
)))
5716 anything-type-attributes
))
5717 (desc "anything-approximate-candidate-number")
5720 (let ((anything-buffer (current-buffer)))
5721 (anything-approximate-candidate-number))))
5724 (let ((anything-buffer (current-buffer)))
5727 (anything-approximate-candidate-number))))
5730 (let ((anything-buffer (current-buffer)))
5734 (<= 2 (anything-approximate-candidate-number)))))
5737 (let ((anything-buffer (current-buffer)))
5739 (propertize "multi\nline\n" 'anything-multiline t
))
5740 (anything-approximate-candidate-number))))
5743 (let ((anything-buffer (current-buffer))
5744 (anything-candidate-separator "-----"))
5746 (propertize "multi\nline1\n" 'anything-multiline t
)
5748 (propertize "multi\nline2\n" 'anything-multiline t
))
5749 (<= 2 (anything-approximate-candidate-number)))))
5750 (desc "delayed-init attribute")
5753 (anything-test-candidates '(((name .
"test")
5754 (delayed-init .
(lambda () (incf value
)))
5756 (requires-pattern .
2)))
5761 (anything-test-candidates '(((name .
"test")
5762 (delayed-init .
(lambda () (incf value
)))
5764 (requires-pattern .
2)))
5769 (anything-test-candidates '(((name .
"test")
5770 (delayed-init (lambda () (incf value
))
5771 (lambda () (incf value
)))
5773 (requires-pattern .
2)))
5779 (anything-test-candidates '(((name .
"test")
5781 .
(lambda () (setq value
5782 (eq anything-current-buffer
(current-buffer)))))
5784 (requires-pattern .
2)))
5787 (desc "pattern-transformer attribute")
5788 (expect '(("test2" ("foo")) ("test3" ("bar")))
5789 (anything-test-candidates '(((name .
"test1")
5790 (candidates "foo" "bar"))
5792 (pattern-transformer .
(lambda (pat) (substring pat
1)))
5793 (candidates "foo" "bar"))
5795 (pattern-transformer .
(lambda (pat) "bar"))
5796 (candidates "foo" "bar")))
5798 (expect '(("test2" ("foo")) ("test3" ("bar")))
5799 (anything-test-candidates '(((name .
"test1")
5800 (candidates "foo" "bar"))
5802 (pattern-transformer (lambda (pat) (substring pat
1)))
5803 (candidates "foo" "bar"))
5805 (pattern-transformer (lambda (pat) "bar"))
5806 (candidates "foo" "bar")))
5808 (expect '(("test2" ("foo")) ("test3" ("bar")))
5809 (anything-test-candidates '(((name .
"test1")
5811 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
5812 (insert "foo\nbar\n"))))
5813 (candidates-in-buffer))
5815 (pattern-transformer .
(lambda (pat) (substring pat
1)))
5817 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
5818 (insert "foo\nbar\n"))))
5819 (candidates-in-buffer))
5821 (pattern-transformer .
(lambda (pat) "bar"))
5823 .
(lambda () (with-current-buffer (anything-candidate-buffer 'global
)
5824 (insert "foo\nbar\n"))))
5825 (candidates-in-buffer)))
5827 (desc "anything-recent-push")
5828 (expect '("foo" "bar" "baz")
5829 (let ((lst '("bar" "baz")))
5830 (anything-recent-push "foo" 'lst
)))
5831 (expect '("foo" "bar" "baz")
5832 (let ((lst '("foo" "bar" "baz")))
5833 (anything-recent-push "foo" 'lst
)))
5834 (expect '("foo" "bar" "baz")
5835 (let ((lst '("bar" "foo" "baz")))
5836 (anything-recent-push "foo" 'lst
)))
5837 (desc "anything-require-at-least-version")
5839 (anything-require-at-least-version "1.1"))
5841 (anything-require-at-least-version "1.200"))
5843 (anything-require-at-least-version
5844 (and (string-match "1\.\\([0-9]+\\)" anything-version
)
5845 (match-string 0 anything-version
))))
5847 (anything-require-at-least-version "1.999"))
5849 (anything-require-at-least-version "1.2000"))
5850 (desc "anything-once")
5853 (anything-test-candidates
5855 (init .
(lambda () (incf i
))))
5857 (init .
(lambda () (incf i
))))))
5861 (anything-test-candidates
5863 (init .
(lambda () (anything-once (lambda () (incf i
))))))
5865 (init .
(lambda () (anything-once (lambda () (incf i
))))))))
5869 (flet ((init1 () (anything-once (lambda () (incf i
)))))
5870 (anything-test-candidates
5876 (desc "anything-marked-candidates")
5877 (expect '("mark3" "mark1")
5878 (let* ((source '((name .
"mark test")))
5879 (anything-marked-candidates
5880 `((,source .
"mark1")
5881 (((name .
"other")) .
"mark2")
5882 (,source .
"mark3"))))
5883 (stub anything-buffer-get
=> (current-buffer))
5884 (stub anything-get-current-source
=> source
)
5885 (anything-marked-candidates)))
5886 (expect '("current")
5887 (let* ((source '((name .
"mark test")))
5888 (anything-marked-candidates nil
))
5889 (stub anything-get-current-source
=> source
)
5890 (stub anything-get-selection
=> "current")
5891 (anything-marked-candidates)))
5892 (desc "anything-marked-candidates with coerce")
5893 (expect '(mark3 mark1
)
5894 (let* ((source '((name .
"mark test")
5896 (anything-marked-candidates
5897 `((,source .
"mark1")
5898 (((name .
"other")) .
"mark2")
5899 (,source .
"mark3"))))
5900 (stub anything-buffer-get
=> (current-buffer))
5901 (stub anything-get-current-source
=> source
)
5902 (anything-marked-candidates)))
5903 (desc "anything-let")
5904 (expect '(1 10000 nil
)
5908 (anything-buffer (exps-tmpbuf)))
5909 (anything-let ((a 1)
5912 (anything-create-anything-buffer))
5913 (with-current-buffer anything-buffer
5919 (anything-buffer (exps-tmpbuf)))
5920 (anything-let ((a 1)
5923 (anything-create-anything-buffer))
5924 (with-current-buffer anything-buffer
5925 (and (assq 'a
(buffer-local-variables))
5926 (assq 'b
(buffer-local-variables))
5927 (assq 'c
(buffer-local-variables))))))
5932 (anything-buffer (exps-tmpbuf)))
5933 (anything-let ((a 1)
5937 (desc "anything-let*")
5942 (anything-buffer (exps-tmpbuf)))
5943 (anything-let* ((a 1)
5946 (anything-create-anything-buffer))
5947 (with-current-buffer anything-buffer
5953 (anything-buffer (exps-tmpbuf)))
5954 (anything-let* ((a 1)
5957 (anything-create-anything-buffer))
5958 (with-current-buffer anything-buffer
5959 (and (assq 'a
(buffer-local-variables))
5960 (assq 'b
(buffer-local-variables))
5961 (assq 'c
(buffer-local-variables))))))
5966 (anything-buffer (exps-tmpbuf)))
5967 (anything-let* ((a 1)
5971 (desc "anything with keyword")
5972 (expect (mock (anything-internal 'test-source
"input" "prompt: " nil
"preselect" "*test*" nil
))
5973 (anything :sources
'test-source
5977 :preselect
"preselect"
5980 (expect (mock (anything-internal 'test-source nil nil nil nil
"*test*" nil
))
5981 (anything :sources
'test-source
5983 :candidate-number-limit
20))
5984 (expect (mock (anything-internal 'test-source nil nil nil nil
"*test*" nil
))
5985 (anything 'test-source nil nil nil nil
"*test*" nil
))
5986 (desc "anything-log-eval-internal")
5987 (expect (mock (anything-log "%S = %S" '(+ 1 2) 3))
5988 (anything-log-eval-internal '((+ 1 2))))
5989 (expect (mock (anything-log "%S = ERROR!" 'unDeFined
))
5990 (anything-log-eval-internal '(unDeFined)))
5992 (desc "anything-output-filter--collect-candidates")
5993 (expect '("a" "b" "")
5994 (split-string "a\nb\n" "\n"))
5996 (anything-output-filter--collect-candidates
5997 '("a" "b" "") (cons 'incomplete-line
"")))
5999 (split-string "a\nb" "\n"))
6001 (anything-output-filter--collect-candidates
6002 '("a" "b") (cons 'incomplete-line
"")))
6003 (expect '(incomplete-line .
"b")
6004 (let ((incomplete-line-info (cons 'incomplete-line
"")))
6005 (anything-output-filter--collect-candidates
6006 '("a" "b") incomplete-line-info
)
6007 incomplete-line-info
))
6008 (expect '("" "c" "")
6009 (split-string "\nc\n" "\n"))
6012 (let ((incomplete-line-info (cons 'incomplete-line
"")))
6013 (anything-output-filter--collect-candidates
6014 '("a" "b") incomplete-line-info
)
6015 (anything-output-filter--collect-candidates
6016 '("" "c" "") incomplete-line-info
)))
6017 (desc "coerce attribute")
6019 (anything :sources
'(((name .
"test")
6020 (candidates "string")
6021 (action . identity
)))
6022 :execute-action-at-once-if-one t
))
6024 (anything :sources
'(((name .
"test")
6025 (candidates "symbol")
6027 (action . identity
)))
6028 :execute-action-at-once-if-one t
))
6030 (anything :sources
'(((name .
"test")
6031 (candidates ("display" .
"real"))
6033 (action . identity
)))
6034 :execute-action-at-once-if-one t
))
6036 (anything :sources
'(((name .
"test")
6038 (candidate-transformer
6039 (lambda (c) '(("display" .
"real"))))
6041 (action . identity
)))
6042 :execute-action-at-once-if-one t
))
6044 (anything :sources
'(((name .
"test")
6046 (filtered-candidate-transformer
6047 (lambda (c s
) '(("display" .
"real"))))
6049 (action . identity
)))
6050 :execute-action-at-once-if-one t
))
6052 (anything :sources
'(((name .
"test")
6053 (candidates "dummy")
6054 (display-to-real (lambda (disp) "real"))
6056 (action . identity
)))
6057 :execute-action-at-once-if-one t
))
6058 (desc "anything-next-point-in-list")
6060 (anything-next-point-in-list 5 '(10 20) nil
))
6062 (anything-next-point-in-list 15 '(10 20) nil
))
6064 (anything-next-point-in-list 25 '(10 20) nil
))
6066 (anything-next-point-in-list 5 '(10 20) t
))
6068 (anything-next-point-in-list 15 '(10 20) t
))
6070 (anything-next-point-in-list 25 '(10 20) t
))
6072 (anything-next-point-in-list 5 '() nil
))
6074 (anything-next-point-in-list 5 '() t
))
6076 (anything-next-point-in-list 5 '(10) nil
))
6078 (anything-next-point-in-list 15 '(10) t
))
6080 (anything-next-point-in-list 10 '(10 20) nil
))
6082 (anything-next-point-in-list 20 '(10 20) t
))
6084 (anything-next-point-in-list 30 '(10 20 30) t
))
6089 ;; How to save (DO NOT REMOVE!!)
6090 ;; (progn (magit-push) (emacswiki-post "anything.el"))
6094 ;;; anything.el ends here