1 ;; recentf.el --- setup a menu of recently opened files
3 ;; Copyright (C) 1999, 2000 Free Software Foundation, Inc.
5 ;; Author: David Ponce <david@dponce.com>
6 ;; Created: July 19 1999
7 ;; Keywords: customization
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
28 ;; This package maintains a menu for visiting files that were operated
29 ;; on recently. When enabled a new "Open Recent" submenu is displayed
30 ;; in the "Files" menu. The recent files list is automatically saved
31 ;; across Emacs sessions. You can customize the number of recent
32 ;; files displayed, the location of the menu and others options (see
33 ;; the source code for details). To install and use, put the file on
34 ;; your Emacs-Lisp load path and add the following into your ~/.emacs
45 (defconst recentf-save-file-header
46 ";;; Automatically generated by `recentf' on %s.\n"
47 "Header to be written into the `recentf-save-file'.")
49 (defvar recentf-list nil
50 "List of recently opened files.")
52 (defvar recentf-update-menu-p t
53 "Non-nil if the recentf menu must be updated.")
55 (defvar recentf-initialized-p nil
56 "Non-nil if recentf already initialized.")
58 ;; IMPORTANT: This function must be defined before the following defcustoms
59 ;; because it is used in their :set clause. To avoid byte-compiler warnings
60 ;; the `symbol-value' function is used to access the `recentf-menu-path'
61 ;; and `recentf-menu-title' values.
62 (defun recentf-menu-customization-changed (sym val
)
63 "Function called when menu customization has changed.
64 It removes the recentf menu and forces its complete redrawing."
65 (when recentf-initialized-p
66 (easy-menu-remove-item nil
67 (symbol-value 'recentf-menu-path
)
68 (symbol-value 'recentf-menu-title
))
69 (setq recentf-update-menu-p t
))
70 (custom-set-default sym val
))
73 "Maintain a menu of recently opened files."
77 (defgroup recentf-filters nil
78 "Group to customize recentf menu filters.
79 You should define the options of your own filters in this group."
82 (defcustom recentf-max-saved-items
20
83 "*Maximum number of items saved to `recentf-save-file'."
87 (defcustom recentf-save-file
(expand-file-name "~/.recentf")
88 "*File to save `recentf-list' into."
92 (defcustom recentf-exclude nil
93 "*List of regexps for filenames excluded from `recentf-list'."
95 :type
'(repeat regexp
))
97 (defcustom recentf-menu-title
"Open Recent"
98 "*Name of the recentf menu."
101 :set
'recentf-menu-customization-changed
)
103 (defcustom recentf-menu-path
'("files")
104 "*Path where to add the recentf menu.
105 If nil add it at top level (see also `easy-menu-change')."
107 :type
'(choice (const :tag
"Top Level" nil
)
108 (sexp :tag
"Menu Path"))
109 :set
'recentf-menu-customization-changed
)
111 (defcustom recentf-menu-before
"open-file"
112 "*Name of the menu before which the recentf menu will be added.
113 If nil add it at end of menu (see also `easy-menu-change')."
115 :type
'(choice (string :tag
"Name")
116 (const :tag
"Last" nil
))
117 :set
'recentf-menu-customization-changed
)
119 (defcustom recentf-menu-action
'recentf-find-file
120 "*Function to invoke with a filename item of the recentf menu.
121 The default action `recentf-find-file' calls `find-file' to edit an
122 existing file. If the file does not exist or is not readable, it is
123 not edited and its name is removed from `recentf-list'. You can use
124 `find-file' instead to open non-existing files and keep them in the
125 list of recently opened files."
128 :set
'recentf-menu-customization-changed
)
130 (defcustom recentf-max-menu-items
10
131 "*Maximum number of items in the recentf menu."
134 :set
'recentf-menu-customization-changed
)
136 (defcustom recentf-menu-filter nil
137 "*Function used to filter files displayed in the recentf menu.
138 Nil means no filter. The following functions are predefined:
140 - - `recentf-sort-ascending' to sort menu items in ascending order.
141 - - `recentf-sort-descending' to sort menu items in descending order.
142 - - `recentf-sort-basenames-ascending' to sort file names in descending order.
143 - - `recentf-sort-basenames-descending' to sort file names in descending order.
144 - - `recentf-sort-directories-ascending' to sort directories in ascending order.
145 - - `recentf-sort-directories-descending' to sort directories in descending order.
146 - - `recentf-show-basenames' to show file names (no directories) in menu items.
147 - - `recentf-show-basenames-ascending' to show file names in ascending order.
148 - - `recentf-show-basenames-descending' to show file names in descending order.
149 - - `recentf-relative-filter' to show file names relative to `default-directory'.
150 - - `recentf-arrange-by-rule' to show sub-menus following user defined rules.
151 - - `recentf-arrange-by-mode' to show a sub-menu for each major mode.
152 - - `recentf-arrange-by-dir' to show a sub-menu for each directory.
153 - - `recentf-filter-changer' to manage a ring of filters.
155 The filter function is called with one argument, the list of menu elements
156 used to build the menu and must return a new list of menu elements (see
157 `recentf-make-menu-element' for menu element form)."
160 :set
'recentf-menu-customization-changed
)
162 (defcustom recentf-menu-append-commands-p t
163 "*If not-nil command items are appended to the menu."
166 :set
'recentf-menu-customization-changed
)
168 (defcustom recentf-keep-non-readable-files-p nil
169 "*If nil (default), non-readable files are not kept in `recentf-list'."
173 :initialize
'custom-initialize-default
174 :set
(lambda (sym val
)
176 (remove-hook 'kill-buffer-hook
'recentf-remove-file-hook
)
177 (add-hook 'kill-buffer-hook
'recentf-remove-file-hook
))
178 (custom-set-default sym val
)))
180 (defcustom recentf-load-hook nil
181 "*Normal hook run at end of loading the `recentf' package."
186 ;;;; Common functions
188 (defconst recentf-case-fold-search
189 (memq system-type
'(vax-vms windows-nt
))
190 "Non-nil if recentf searches and matches should ignore case.")
192 (defun recentf-include-p (filename)
193 "Return t if FILENAME match none of the `recentf-exclude' regexps."
194 (let ((case-fold-search recentf-case-fold-search
)
195 (rl recentf-exclude
))
196 (while (and rl
(not (string-match (car rl
) filename
)))
200 (defun recentf-add-file (filename)
201 "Add or move FILENAME at the beginning of `recentf-list'.
202 Does nothing if FILENAME matches one of the `recentf-exclude' regexps."
203 (let ((filename (expand-file-name filename
)))
204 (when (recentf-include-p filename
)
205 (setq recentf-list
(cons filename
(delete filename recentf-list
)))
206 (setq recentf-update-menu-p t
))))
208 (defun recentf-remove-if-non-readable (filename)
209 "Remove FILENAME from `recentf-list' if not readable."
210 (unless (file-readable-p filename
)
211 (setq recentf-list
(delete filename recentf-list
))
212 (setq recentf-update-menu-p t
)))
214 (defun recentf-find-file (filename)
215 "Edit file FILENAME using `find-file'.
216 If FILENAME is not readable it is removed from `recentf-list'."
217 (if (file-readable-p filename
)
220 (message "File `%s' not found." filename
)
221 (setq recentf-list
(delete filename recentf-list
))
222 (setq recentf-update-menu-p t
))))
224 (defun recentf-trunc-list (l n
)
225 "Return a list of the first N elements of L."
227 (while (and l
(> n
0))
228 (setq lh
(cons (car l
) lh
))
233 (defun recentf-elements (n)
234 "Return a list of the first N elements of `recentf-list'."
235 (recentf-trunc-list recentf-list n
))
237 (defun recentf-make-menu-element (menu-item menu-value
)
238 "Create a new menu-element.
240 A menu element is a pair (MENU-ITEM . MENU-VALUE) where:
242 - - MENU-ITEM is the menu item string displayed.
243 - - MENU-VALUE is the path used to open the file when the
244 corresponding MENU-ITEM is selected. Or it is
245 a pair (SUB-MENU-TITLE . MENU-ELEMENTS) where
246 SUB-MENU-TITLE is a sub-menu title and
247 MENU-ELEMENTS is the list of menu elements in
249 (cons menu-item menu-value
))
251 (defun recentf-menu-element-item (e)
252 "Return the item part of the menu-element E."
255 (defun recentf-menu-element-value (e)
256 "Return the value part of the menu-element E."
259 (defun recentf-set-menu-element-item (e item
)
260 "Change the item part of menu-element E to ITEM."
263 (defun recentf-set-menu-element-value (e value
)
264 "Change the value part of menu-element E to VALUE."
267 (defun recentf-sub-menu-element-p (e)
268 "Return non-nil if menu-element E defines a sub-menu."
269 (consp (recentf-menu-element-value e
)))
271 (defun recentf-make-default-menu-element (file-path)
272 "Make a new default menu element (MENU-ITEM . MENU-VALUE).
273 Do so for the given recent file path FILE-PATH. MENU-ITEM and
274 MENU-VALUE are set to FILE-PATH. See also
275 `recentf-make-menu-element'."
276 (recentf-make-menu-element file-path file-path
))
278 (defun recentf-menu-elements (n)
279 "Return a list of the first N default menu elements from `recentf-list'.
280 See also `recentf-make-default-menu-element'."
281 (mapcar 'recentf-make-default-menu-element
282 (recentf-elements n
)))
284 (defun recentf-apply-menu-filter (filter l
)
285 "Apply function FILTER to the list of menu-elements L.
286 It takes care of sub-menu elements in L and recursively apply FILTER
287 to them. It is guaranteed that FILTER receives only a list of single
288 menu-elements (no sub-menu)."
289 (if (and (functionp filter
) l
)
290 (let ((case-fold-search recentf-case-fold-search
)
291 menu-element sub-menu-elements single-elements
)
292 ;; split L in two sub-listes:
293 ;; one of sub-menus elements and
294 ;; one of single menu elements
296 (setq menu-element
(car l
))
297 (if (recentf-sub-menu-element-p menu-element
)
298 (setq sub-menu-elements
299 (cons menu-element sub-menu-elements
))
300 (setq single-elements
301 (cons menu-element single-elements
)))
303 ;; apply FILTER to the list of single menu elements
305 (setq single-elements
(funcall filter
306 (nreverse single-elements
))))
307 ;; apply FILTER to sub-menu menu element list
308 (setq l sub-menu-elements
)
309 (setq sub-menu-elements nil
)
311 (setq menu-element
(car l
))
312 (recentf-set-menu-element-value
314 (recentf-apply-menu-filter
316 (recentf-menu-element-value menu-element
)))
317 (setq sub-menu-elements
(cons menu-element sub-menu-elements
))
319 ;; build and return the new filtered menu element list
320 (nconc sub-menu-elements single-elements
))
323 (defvar recentf-menu-items-for-commands
324 (list ["Cleanup list"
326 :help
"Remove all non-readable and excluded files from the recent list"
330 :help
"Edit the files that are kept in the recent list"
334 :help
"Save the list of recently opened files now"
337 (customize-group "recentf")
338 :help
"Customize recently opened files menu and options"
341 "List of menu items for recentf commands.")
343 (defvar recentf-menu-filter-commands nil
344 "This variable can be used by menu filters to setup their own command menu.
346 If non-nil it must contain a list of valid menu-items to be appended
347 to the recent file list part of the menu. Before calling a menu
348 filter function this variable is reset to nil.")
350 (defun recentf-make-menu-items ()
351 "Make menu items from `recentf-list'."
352 (setq recentf-menu-filter-commands nil
)
354 (mapcar 'recentf-make-menu-item
355 (recentf-apply-menu-filter
357 (recentf-menu-elements recentf-max-menu-items
)))))
358 (append (or file-items
(list ["No files" t
359 :help
"No recent file to open"
361 (and (< recentf-max-menu-items
(length recentf-list
))
362 (list ["More..." recentf-open-more-files
363 :help
"Open files that are not in the menu"
365 (and recentf-menu-filter-commands
367 recentf-menu-filter-commands
))
368 (and recentf-menu-append-commands-p
370 recentf-menu-items-for-commands
)))))
372 (defun recentf-make-menu-item (menu-element)
373 "Make a menu item from MENU-ELEMENT (see `recentf-make-menu-element')."
374 (let ((menu-item (recentf-menu-element-item menu-element
))
375 (menu-value (recentf-menu-element-value menu-element
)))
376 (if (recentf-sub-menu-element-p menu-element
)
377 (cons menu-item
(mapcar 'recentf-make-menu-item menu-value
))
379 (list recentf-menu-action menu-value
)
380 :help
(concat "Open " menu-value
)
384 ;;;; Predefined menu filter functions
387 (defun recentf-sort-ascending (l)
388 "Sort the list of menu elements L in ascending order.
389 The MENU-ITEM part of each menu element is compared."
390 (sort (copy-sequence l
)
393 (string-lessp (recentf-menu-element-item e1
)
394 (recentf-menu-element-item e2
))))))
396 (defun recentf-sort-descending (l)
397 "Sort the list of menu elements L in descending order.
398 The MENU-ITEM part of each menu element is compared."
399 (sort (copy-sequence l
)
402 (string-lessp (recentf-menu-element-item e2
)
403 (recentf-menu-element-item e1
))))))
405 (defun recentf-sort-basenames-ascending (l)
406 "Sort the list of menu elements L in ascending order.
407 Only file names (without directories) are compared."
408 (sort (copy-sequence l
)
412 (file-name-nondirectory (recentf-menu-element-value e1
))
413 (file-name-nondirectory (recentf-menu-element-value e2
)))))))
415 (defun recentf-sort-basenames-descending (l)
416 "Sort the list of menu elements L in descending order.
417 Only file names (without directories) are compared."
418 (sort (copy-sequence l
)
422 (file-name-nondirectory (recentf-menu-element-value e2
))
423 (file-name-nondirectory (recentf-menu-element-value e1
)))))))
425 (defun recentf-directory-compare (p1 p2
)
426 "Compare directories then filenames in paths P1 and P2.
427 Return non-nil if P1 is less than P2."
428 (let ((d1 (file-name-directory p1
))
429 (f1 (file-name-nondirectory p1
))
430 (d2 (file-name-directory p2
))
431 (f2 (file-name-nondirectory p2
)))
434 (string-lessp d1 d2
))))
436 (defun recentf-sort-directories-ascending (l)
437 "Sort the list of menu elements L in ascending order.
438 Compares directories then filenames to order the list."
439 (sort (copy-sequence l
)
442 (recentf-directory-compare (recentf-menu-element-value e1
)
443 (recentf-menu-element-value e2
))))))
445 (defun recentf-sort-directories-descending (l)
446 "Sort the list of menu elements L in descending order.
447 Compares directories then filenames to order the list."
448 (sort (copy-sequence l
)
451 (recentf-directory-compare (recentf-menu-element-value e2
)
452 (recentf-menu-element-value e1
))))))
454 (defun recentf-show-basenames (l)
455 "Filter the list of menu elements L to show only file names (no directories)
456 in the menu. When file names are duplicated their directory component is added."
457 (let ((names (mapcar (function
459 (file-name-nondirectory
460 (recentf-menu-element-value item
))))
462 (dirs (mapcar (function
465 (recentf-menu-element-value item
))))
467 (pathes (mapcar 'recentf-menu-element-value l
))
469 item filtered-items filtered-list
)
471 (setq item
(car names
))
472 (setq names
(cdr names
))
475 (cons (recentf-make-menu-element
476 (if (or (member item names
) (member item filtered-items
))
477 (concat item
" (" (nth pos dirs
) ")")
481 (setq filtered-items
(cons item filtered-items
)))
482 (nreverse filtered-list
)))
484 (defun recentf-show-basenames-ascending (l)
485 "Filter the list of menu elements L.
486 Show only file names in the menu, sorted in ascending order. This
487 filter combines the `recentf-sort-basenames-ascending' and
488 `recentf-show-basenames' filters."
489 (recentf-show-basenames (recentf-sort-basenames-ascending l
)))
491 (defun recentf-show-basenames-descending (l)
492 "Filter the list of menu elements L.
493 Show only file names in the menu, sorted in descending order. This
494 filter combines the `recentf-sort-basenames-descending' and
495 `recentf-show-basenames' filters."
496 (recentf-show-basenames (recentf-sort-basenames-descending l
)))
498 (defun recentf-relative-filter (l)
499 "Filter the list of `recentf-menu-elements' L.
500 Show filenames relative to `default-directory'."
501 (setq recentf-update-menu-p t
) ; force menu update
503 (lambda (menu-element)
504 (let* ((ful-path (recentf-menu-element-value menu-element
))
505 (rel-path (file-relative-name ful-path
)))
506 (if (string-match "^\\.\\." rel-path
)
508 (recentf-make-menu-element rel-path ful-path
)))))
511 (defcustom recentf-arrange-rules
513 ("Elisp files (%d)" ".\\.el$")
514 ("Java files (%d)" ".\\.java$")
515 ("C/C++ files (%d)" "c\\(pp\\)?$")
517 "*List of rules used by `recentf-arrange-by-rule' to build sub-menus.
518 A rule is a pair (SUB-MENU-TITLE . MATCHER). SUB-MENU-TITLE is the
519 displayed title of the sub-menu where a '%d' `format' pattern is
520 replaced by the number of items in the sub-menu. MATCHER is a regexp
521 or a list of regexps. Items matching one of the regular expressions in
522 MATCHER are added to the corresponding sub-menu."
523 :group
'recentf-filters
524 :type
'(repeat (cons string
(repeat regexp
)))
525 :set
'recentf-menu-customization-changed
)
527 (defcustom recentf-arrange-by-rule-others
"Other files (%d)"
528 "*Title of the `recentf-arrange-by-rule' sub-menu.
529 This is for the menu where items that don't match any
530 `recentf-arrange-rules' are displayed. If nil these items are
531 displayed in the main recent files menu. A '%d' `format' pattern in
532 the title is replaced by the number of items in the sub-menu."
533 :group
'recentf-filters
534 :type
'(choice (const :tag
"Main menu" nil
)
535 (string :tag
"Title"))
536 :set
'recentf-menu-customization-changed
)
538 (defcustom recentf-arrange-by-rules-min-items
0
539 "*Minimum number of items in a `recentf-arrange-by-rule' sub-menu.
540 If the number of items in a sub-menu is less than this value the
541 corresponding sub-menu items are displayed in the main recent files
542 menu or in the `recentf-arrange-by-rule-others' sub-menu if
544 :group
'recentf-filters
546 :set
'recentf-menu-customization-changed
)
548 (defcustom recentf-arrange-by-rule-subfilter nil
549 "*Function used by `recentf-arrange-by-rule' to filter sub-menu elements.
550 Nil means no filter. See also `recentf-menu-filter'. You can't use
551 `recentf-arrange-by-rule' itself here!"
552 :group
'recentf-filters
554 :set
(lambda (sym val
)
555 (if (eq val
'recentf-arrange-by-rule
)
556 (error "Can't use `recentf-arrange-by-rule' itself here!")
557 (recentf-menu-customization-changed sym val
))))
559 (defun recentf-match-rule-p (matcher file-path
)
560 "Return non-nil if FILE-PATH match the rule specified by MATCHER.
561 See `recentf-arrange-rules' for details on MATCHER."
562 (if (stringp matcher
)
563 (string-match matcher file-path
)
564 (while (and (consp matcher
)
565 (not (string-match (car matcher
) file-path
)))
566 (setq matcher
(cdr matcher
)))
569 (defun recentf-arrange-by-rule (l)
570 "Filter the list of menu-elements L.
571 Arrange them in sub-menus following rules in `recentf-arrange-rules'."
572 (let ((sub-menus-number (length recentf-arrange-rules
)))
573 (if (> sub-menus-number
0)
574 (let ((sub-menus (apply 'vector
578 recentf-arrange-rules
)))
579 other-menu-elements index min-size
)
581 (let* ((menu-element (car l
))
582 (file-path (recentf-menu-element-value menu-element
))
583 (rules recentf-arrange-rules
)
586 (while (and (not found
) rules
)
587 (if (recentf-match-rule-p (cdar rules
) file-path
)
588 (let ((sub-menu (aref sub-menus index
)))
590 (recentf-set-menu-element-value
592 (cons menu-element
(recentf-menu-element-value sub-menu
)))
594 (setq index
(1+ index
))
595 (setq rules
(cdr rules
)))
597 (setq other-menu-elements
598 (cons menu-element other-menu-elements
)))
602 (setq min-size
(if (integerp recentf-arrange-by-rules-min-items
)
603 (max 0 recentf-arrange-by-rules-min-items
)
605 (while (< index sub-menus-number
)
606 (let* ((sub-menu (aref sub-menus index
))
607 (sub-menu-title (recentf-menu-element-item sub-menu
))
608 (sub-menu-elements (recentf-menu-element-value sub-menu
))
609 (sub-menu-length (length sub-menu-elements
)))
610 (if (> sub-menu-length
0)
612 ((< sub-menu-length min-size
)
613 (setq other-menu-elements
614 (nconc sub-menu-elements other-menu-elements
)))
615 ((>= sub-menu-length min-size
)
616 (recentf-set-menu-element-item
618 (format sub-menu-title sub-menu-length
))
619 (recentf-set-menu-element-value
621 (recentf-apply-menu-filter
622 recentf-arrange-by-rule-subfilter
623 (nreverse sub-menu-elements
)))
624 (setq l
(cons sub-menu l
)))))
625 (setq index
(1+ index
))))
626 (if (and (stringp recentf-arrange-by-rule-others
)
630 (cons (recentf-make-menu-element
631 (format recentf-arrange-by-rule-others
632 (length other-menu-elements
))
633 (recentf-apply-menu-filter
634 recentf-arrange-by-rule-subfilter
635 (nreverse other-menu-elements
)))
637 (setq l
(nconc (nreverse l
)
638 (recentf-apply-menu-filter
639 recentf-arrange-by-rule-subfilter
640 (nreverse other-menu-elements
)))))))
643 (defun recentf-build-mode-rules ()
644 "Convert `auto-mode-alist' to `recentf-arrange-rules' format."
645 (let ((case-fold-search recentf-case-fold-search
)
646 (modes auto-mode-alist
)
647 regexp mode rule-name rule rules
)
649 (setq regexp
(caar modes
))
650 (setq mode
(cdar modes
))
652 (setq rule-name
(symbol-name mode
))
653 (if (string-match "\\(.*\\)-mode$" rule-name
)
654 (setq rule-name
(match-string 1 rule-name
)))
655 (setq rule-name
(concat rule-name
" (%d)"))
656 (setq rule
(assoc rule-name rules
))
658 (setcdr rule
(cons regexp
(cdr rule
)))
659 (setq rules
(cons (list rule-name regexp
) rules
))))
660 (setq modes
(cdr modes
)))
661 ;; It is important to preserve auto-mode-alist order
662 ;; to ensure the right file <-> mode association
665 (defun recentf-arrange-by-mode (l)
666 "Filter the list of menu-elements L to build sub-menus for each major mode."
667 (let ((recentf-arrange-rules (recentf-build-mode-rules))
668 (recentf-arrange-by-rule-others "others (%d)"))
669 (recentf-arrange-by-rule l
)))
671 (defun recentf-build-dir-rules (l)
672 "Convert directories in menu-elements L to rules in `recentf-arrange-rules' format."
676 (let ((dir (file-name-directory
677 (recentf-menu-element-value e
))))
678 (or (member dir dirs
)
679 (setq dirs
(cons dir dirs
))))))
683 (cons (concat d
" (%d)")
685 (nreverse (sort dirs
'string-lessp
)))))
687 (defun recentf-file-name-nondir (l)
688 "Filter the list of menu-elements L to show only filenames.
689 This simplified version of `recentf-show-basenames' does not handle
690 duplicates. It is used by `recentf-arrange-by-dir' as its
691 `recentf-arrange-by-rule-subfilter'."
694 (recentf-make-menu-element
695 (file-name-nondirectory (recentf-menu-element-value e
))
696 (recentf-menu-element-value e
))))
699 (defun recentf-arrange-by-dir (l)
700 "Filter the list of menu-elements L to build sub-menus for each directory."
701 (let ((recentf-arrange-rules (recentf-build-dir-rules l
))
702 (recentf-arrange-by-rule-subfilter 'recentf-file-name-nondir
)
703 recentf-arrange-by-rule-others
)
704 (nreverse (recentf-arrange-by-rule l
))))
706 (defvar recentf-filter-changer-state nil
707 "Used by `recentf-filter-changer' to hold its state.")
709 (defcustom recentf-filter-changer-alist
711 (recentf-arrange-by-mode .
"*Files by Mode*")
712 (recentf-arrange-by-dir .
"*Files by Directory*")
713 (recentf-arrange-by-rule .
"*Files by User Rule*")
715 "*List of filters managed by `recentf-filter-changer'.
716 Each filter is defined by a pair (FILTER-FUN . FILTER-LBL) where:
718 - - FILTER-FUN is the function that filters menu-elements
719 - - FILTER-LBL is the menu item used to activate the filter"
720 :group
'recentf-filters
721 :type
'(repeat (cons function string
))
722 :set
(lambda (sym val
)
723 (setq recentf-filter-changer-state nil
)
724 (recentf-menu-customization-changed sym val
)))
726 (defun recentf-filter-changer-goto-next ()
727 "Go to the next filter available (see `recentf-filter-changer')."
728 (and (consp recentf-filter-changer-state
)
729 (setq recentf-filter-changer-state
730 (cdr recentf-filter-changer-state
)))
731 (setq recentf-update-menu-p t
))
733 (defun recentf-filter-changer-get-current ()
734 "Get the current filter available (see `recentf-filter-changer')."
735 (if (null recentf-filter-changer-state
)
736 (setq recentf-filter-changer-state recentf-filter-changer-alist
))
737 (and (consp recentf-filter-changer-state
)
738 (car recentf-filter-changer-state
)))
740 (defun recentf-filter-changer-get-next ()
741 "Get the next filter available (see `recentf-filter-changer')."
742 (let ((filters recentf-filter-changer-state
))
743 (cond ((consp filters
)
744 (setq filters
(cdr filters
))
746 (setq filters recentf-filter-changer-alist
)))
748 (setq filters recentf-filter-changer-alist
)
750 (setq filters
(cdr filters
)))))
754 (defun recentf-filter-changer (l)
755 "Manage a ring of filters.
756 `recentf-filter-changer-alist' defines the filters in the ring.
757 Actual filtering of L is delegated to the current filter in the
758 ring. A filter menu item is displayed allowing to dynamically activate
759 the next filter in the ring. If the filter ring is empty L is left
761 (let ((current-filter-item (recentf-filter-changer-get-current))
762 (next-filter-item (recentf-filter-changer-get-next)))
763 (when current-filter-item
764 (setq l
(recentf-apply-menu-filter (car current-filter-item
) l
))
766 (setq recentf-menu-filter-commands
767 (list (vector (cdr next-filter-item
)
768 '(recentf-filter-changer-goto-next)
776 (defun recentf-cancel-dialog (&rest ignore
)
777 "Cancel the current dialog.
778 Used by `recentf-edit-list' and `recentf-open-files' dialogs."
780 (kill-buffer (current-buffer))
781 (message "Dialog canceled."))
783 (defvar recentf-dialog-mode-map nil
784 "`recentf-dialog-mode' keymap.")
786 (if recentf-dialog-mode-map
788 (setq recentf-dialog-mode-map
(make-sparse-keymap))
789 (define-key recentf-dialog-mode-map
"q" 'recentf-cancel-dialog
)
790 (define-key recentf-dialog-mode-map
[down-mouse-1
] 'widget-button-click
)
791 (set-keymap-parent recentf-dialog-mode-map widget-keymap
))
793 (defun recentf-dialog-mode ()
794 "Major mode used in recentf dialogs.
796 These are the special commands of `recentf-dialog-mode' mode:
797 q -- cancel this dialog."
799 (setq major-mode
'recentf-dialog-mode
)
800 (setq mode-name
"recentf-dialog")
801 (use-local-map recentf-dialog-mode-map
))
804 ;;;; Hooks and Commands
807 (defun recentf-add-file-hook ()
808 "Insert the name of the file just opened or written into `recentf-list'."
809 (and buffer-file-name
(recentf-add-file buffer-file-name
))
812 (defun recentf-remove-file-hook ()
813 "When a buffer is killed remove a non readable file from `recentf-list'."
814 (and buffer-file-name
(recentf-remove-if-non-readable buffer-file-name
))
817 (defun recentf-update-menu-hook ()
818 "Update the recentf menu from the current `recentf-list'."
819 (when recentf-update-menu-p
822 (setq recentf-update-menu-p nil
)
823 (easy-menu-change recentf-menu-path
825 (recentf-make-menu-items)
826 recentf-menu-before
))
829 (defun recentf-dump-variable (variable &optional limit
)
830 "Insert a \"(setq VARIABLE value)\" in the current buffer.
831 Optional argument LIMIT specifies a maximum length when VARIABLE value
832 is a list (default to the full list)."
833 (let ((value (symbol-value variable
)))
834 (insert (format "(setq %S\n '(\n" variable
))
836 (if (and (integerp limit
) (> limit
0))
837 (setq value
(recentf-trunc-list value limit
)))
840 (insert (format " %S\n" e
))))
843 (insert (format " %S\n" value
))))
848 (defun recentf-save-list ()
849 "Save the current `recentf-list' to the file `recentf-save-file'."
853 (insert (format recentf-save-file-header
(current-time-string)))
854 (recentf-dump-variable 'recentf-list recentf-max-saved-items
)
855 (recentf-dump-variable 'recentf-filter-changer-state
)
856 (if (file-writable-p recentf-save-file
)
857 (write-region (point-min) (point-max) recentf-save-file
))
858 (kill-buffer (current-buffer)))
861 (defvar recentf-edit-selected-items nil
862 "Used by `recentf-edit-list'.
863 Holds list of files to be deleted from `recentf-list'.")
865 (defun recentf-edit-list-action (widget &rest ignore
)
866 "Checkbox WIDGET action used by `recentf-edit-list' to select/unselect a file."
867 (let ((value (widget-get widget
':tag
)))
868 ;; if value is already in the selected items
869 (if (memq value recentf-edit-selected-items
)
872 (setq recentf-edit-selected-items
873 (delq value recentf-edit-selected-items
))
874 (message "%s removed from selection." value
))
877 (setq recentf-edit-selected-items
878 (nconc (list value
) recentf-edit-selected-items
))
879 (message "%s added to selection." value
)))))
882 (defun recentf-edit-list ()
883 "Allow the user to edit the files that are kept in the recent list."
885 (with-current-buffer (get-buffer-create (concat "*" recentf-menu-title
" - Edit list*"))
886 (switch-to-buffer (current-buffer))
887 (kill-all-local-variables)
888 (let ((inhibit-read-only t
))
890 (let ((all (overlay-lists)))
891 ;; Delete all the overlays.
892 (mapc 'delete-overlay
(car all
))
893 (mapc 'delete-overlay
(cdr all
)))
894 (setq recentf-edit-selected-items nil
)
895 ;; Insert the dialog header
896 (widget-insert "Select the files to be deleted from the 'recentf-list'.\n\n")
897 (widget-insert "Click on Ok to update the list. ")
898 (widget-insert "Click on Cancel or type \"q\" to quit.\n")
899 ;; Insert the list of files as checkboxes
902 (widget-create 'checkbox
903 :value nil
; unselected checkbox
904 :format
"\n %[%v%] %t"
906 :notify
'recentf-edit-list-action
)))
908 (widget-insert "\n\n")
909 ;; Insert the Ok button
910 (widget-create 'push-button
911 :notify
(lambda (&rest ignore
)
912 (if recentf-edit-selected-items
913 (progn (kill-buffer (current-buffer))
917 (delq item recentf-list
))))
918 recentf-edit-selected-items
)
919 (message "%S file(s) removed from the list"
920 (length recentf-edit-selected-items
))
921 (setq recentf-update-menu-p t
))
922 (message "No file selected.")))
925 ;; Insert the Cancel button
926 (widget-create 'push-button
927 :notify
'recentf-cancel-dialog
929 (recentf-dialog-mode)
931 (goto-char (point-min))))
934 (defun recentf-cleanup ()
935 "Remove all non-readable and excluded files from `recentf-list'."
937 (let ((count (length recentf-list
)))
942 (and (file-readable-p filename
)
943 (recentf-include-p filename
)
946 (setq count
(- count
(length recentf-list
)))
947 (message "%s removed from the list"
948 (cond ((= count
0) "No file")
949 ((= count
1) "One file")
950 (t (format "%d files" count
)))))
951 (setq recentf-update-menu-p t
))
953 (defun recentf-open-files-action (widget &rest ignore
)
954 "Button WIDGET action used by `recentf-open-files' to open a file."
955 (kill-buffer (current-buffer))
956 (funcall recentf-menu-action
(widget-value widget
)))
958 (defvar recentf-open-files-item-shift
""
959 "String used by `recentf-open-files' to shift right sub-menu items.")
961 (defun recentf-open-files-item (menu-element)
962 "Insert MENU-ELEMENT item in the current interaction buffer."
963 (let ((menu-item (car menu-element
))
964 (file-path (cdr menu-element
)))
965 (if (consp file-path
) ; This is a sub-menu
966 (let* ((shift recentf-open-files-item-shift
)
967 (recentf-open-files-item-shift (concat shift
" ")))
971 :format
(concat shift
"%{%t%}:\n"))
972 (mapc 'recentf-open-files-item
974 (widget-insert "\n"))
975 (widget-create 'push-button
976 :button-face
'default
978 :help-echo
(concat "Open " file-path
)
979 :format
(concat recentf-open-files-item-shift
"%[%t%]")
980 :notify
'recentf-open-files-action
982 (widget-insert "\n"))))
985 (defun recentf-open-files (&optional files buffer-name
)
986 "Display buffer allowing user to choose a file from recently-opened list.
987 The optional argument FILES may be used to specify the list, otherwise
988 `recentf-list' is used. The optional argument BUFFER-NAME specifies
989 which buffer to use for the interaction."
992 (setq files recentf-list
))
993 (if (null buffer-name
)
994 (setq buffer-name
(concat "*" recentf-menu-title
"*")))
995 (with-current-buffer (get-buffer-create buffer-name
)
996 (switch-to-buffer (current-buffer))
997 (kill-all-local-variables)
998 (let ((inhibit-read-only t
))
1000 (let ((all (overlay-lists)))
1001 ;; Delete all the overlays.
1002 (mapc 'delete-overlay
(car all
))
1003 (mapc 'delete-overlay
(cdr all
)))
1004 ;; Insert the dialog header
1005 (widget-insert "Click on a file to open it. ")
1006 (widget-insert "Click on Cancel or type \"q\" to quit.\n\n" )
1007 ;; Insert the list of files as buttons
1008 (let ((recentf-open-files-item-shift ""))
1009 (mapc 'recentf-open-files-item
1010 (recentf-apply-menu-filter
1012 (mapcar 'recentf-make-default-menu-element files
))))
1013 (widget-insert "\n")
1014 ;; Insert the Cancel button
1015 (widget-create 'push-button
1016 :notify
'recentf-cancel-dialog
1018 (recentf-dialog-mode)
1020 (goto-char (point-min))))
1023 (defun recentf-open-more-files ()
1024 "Allow the user to open files that are not in the menu."
1026 (recentf-open-files (nthcdr recentf-max-menu-items recentf-list
)
1027 (concat "*" recentf-menu-title
" - More*")))
1030 ;;; Note this definition must be at the end of the file, because
1031 ;;; `define-minor-mode' actually calls the mode-function if the
1032 ;;; associated variable is non-nil, which requires that all needed
1033 ;;; functions be already defined. [This is arguably a bug in d-m-m]
1035 (define-minor-mode recentf-mode
1036 "Toggle recentf mode.
1037 With prefix argument ARG, turn on if positive, otherwise off.
1038 Returns non-nil if the new state is enabled.
1040 When recentf mode is enabled, it maintains a menu for visiting files that
1041 were operated on recently."
1045 (unless recentf-initialized-p
1046 (setq recentf-initialized-p t
)
1047 (if (file-readable-p recentf-save-file
)
1048 (load-file recentf-save-file
))
1049 (setq recentf-update-menu-p t
)
1050 (add-hook 'find-file-hooks
'recentf-add-file-hook
)
1051 (add-hook 'write-file-hooks
'recentf-add-file-hook
)
1052 (add-hook 'menu-bar-update-hook
'recentf-update-menu-hook
)
1053 (add-hook 'kill-emacs-hook
'recentf-save-list
))
1054 (when recentf-initialized-p
1055 (setq recentf-initialized-p nil
)
1057 (easy-menu-remove-item nil recentf-menu-path recentf-menu-title
)
1058 (remove-hook 'find-file-hooks
'recentf-add-file-hook
)
1059 (remove-hook 'write-file-hooks
'recentf-add-file-hook
)
1060 (remove-hook 'menu-bar-update-hook
'recentf-update-menu-hook
)
1061 (remove-hook 'kill-emacs-hook
'recentf-save-list
))))
1066 (run-hooks 'recentf-load-hook
)
1068 ;;; recentf.el ends here