Function: completion-pcm--filename-try-filter
completion-pcm--filename-try-filter is a byte-compiled function
defined in minibuffer.el.gz.
Signature
(completion-pcm--filename-try-filter ALL)
Documentation
Filter to adjust all file completion to the behavior of try.
Source Code
;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
;; We want to provide the functionality of `try', but we use `all'
;; and then merge it. In most cases, this works perfectly, but
;; if the completion table doesn't consider the same completions in
;; `try' as in `all', then we have a problem. The most common such
;; case is for filename completion where completion-ignored-extensions
;; is only obeyed by the `try' code. We paper over the difference
;; here. Note that it is not quite right either: if the completion
;; table uses completion-table-in-turn, this filtering may take place
;; too late to correctly fallback from the first to the
;; second alternative.
(defun completion-pcm--filename-try-filter (all)
"Filter to adjust `all' file completion to the behavior of `try'."
(when all
(let ((try ())
(re (concat "\\(?:\\`\\.\\.?/\\|"
(regexp-opt completion-ignored-extensions)
"\\)\\'")))
(dolist (f all)
(unless (string-match-p re f) (push f try)))
(or (nreverse try) all))))