:type 'hook
:group 'selector)
-(defcustom selector/quick-pick-recent-filter nil
+(defcustom selector/quick-pick-recent-hide-filter nil
"Regexp specifying which filenames should be hidden by `selector/quick-pick-recent'"
:type 'string
:group 'selector)
pattern-matching search implemented in `selector/select'.
Without a prefix argument, hide files matching
-`selector/quick-pick-recent-filter'.
+`selector/quick-pick-recent-hide-filter'.
With a prefix argument before the selection of the file per se,
permits to edit it before opening."
(let ((l
(mapcar
(lambda (s) (cons (selector/filename-to-string s) s))
- (if (and (not universal) selector/quick-pick-recent-filter)
+ (if (and (not universal) selector/quick-pick-recent-hide-filter)
(delq nil
(mapcar
- (lambda (x) (and (not (string-match selector/quick-pick-recent-filter x)) x))
+ (lambda (x) (and (not (string-match selector/quick-pick-recent-hide-filter x)) x))
recentf-list)
)
recentf-list