New function `locate-user-emacs-file'.
[emacs.git] / lisp / filesets.el
blob6bd6d3041750664aa4bc7c9dcd1470d61ac077a5
1 ;;; filesets.el --- handle group of files
3 ;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 ;; Free Software Foundation, Inc.
6 ;; Author: Thomas Link <sanobast-emacs@yahoo.de>
7 ;; Maintainer: FSF
8 ;; Keywords: filesets convenience
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Code:
27 (defvar filesets-version "1.8.4")
28 (defvar filesets-homepage
29 "http://members.a1.net/t.link/CompEmacsFilesets.html")
31 ;;; Commentary:
33 ;; Define filesets, which can be opened or saved with the power of one or
34 ;; two mouse clicks only. A fileset is either a list of files, a file
35 ;; pattern, a base directory and a search pattern (for files), or an
36 ;; inclusion group (i.e. a base file including other files).
38 ;; Usage:
39 ;; 1. Put (require 'filesets) and (filesets-init) in your .emacs file.
40 ;; 2. Type ;; M-x filesets-edit or choose "Edit Filesets" from the menu.
41 ;; 3. Save your customizations.
43 ;; Caveat: Fileset names have to be unique.
45 ;; Filesets.el adds a nifty filesets menu to your menubar. If you change
46 ;; your filesets on the fly, don't forget to select "Save Filesets" from
47 ;; the menu.
49 ;; Pressing on the first item in the submenu will open all files at once.
50 ;; Define your own function, e.g. browse-url, for opening a fileset's
51 ;; files. Or define external viewers for opening files with other
52 ;; programs. See `filesets-external-viewers'.
54 ;; BTW, if you close a fileset, files, which have been changed, will
55 ;; be silently saved. Change this behavior by setting
56 ;; `filesets-save-buffer-fn'.
58 ;;; Supported modes for inclusion groups (`filesets-ingroup-patterns'):
59 ;; - Elisp
60 ;; - Emacs-Wiki (simple names only)
61 ;; - LaTeX
65 ;;; Known bugs:
68 ;;; To do:
70 ;;- better handling of different customization scenarios
72 ;; Data gathering should be better separated from building the menu
73 ;; so that one could (1) use filesets without installing the menu
74 ;; and (2) create new "frontends" to speedbar and others.
76 ;; The functionality to call external viewers should be isolated in
77 ;; an extra package and possibly integrated with the MIME
78 ;; handling.
80 ;;; Credits:
82 ;; Helpful suggestions (but no significant code) were contributed by
84 ;;- Christoph Conrad (at gmx de)
85 ;;- Christian Ohler (at Informatik Uni-Oldenburg DE)
86 ;;- Richard Stallman aka RMS (at gnu org)
87 ;;- Per Abrahamsen aka abraham (at dina kvl dk)
90 ;;; Code:
92 (eval-when-compile
93 (require 'cl))
96 ;;; Some variables
98 (defvar filesets-menu-cache nil
99 "The whole filesets menu.")
100 (defvar filesets-cache-version nil
101 "Filesets' cached version number.")
102 (defvar filesets-cache-hostname nil
103 "Filesets' cached system name.")
105 (defvar filesets-ingroup-cache nil
106 "A plist containing files and their ingroup data.")
107 (defvar filesets-ingroup-files nil
108 "List of files already processed when searching for included files.")
110 (defvar filesets-has-changed-flag t
111 "Non-nil means some fileset definition has changed.")
112 (defvar filesets-submenus nil
113 "An association list with filesets menu data.")
114 (defvar filesets-updated-buffers nil
115 "A list of buffers with updated menu bars.")
116 (defvar filesets-menu-use-cached-flag nil
117 "Use cached data. See `filesets-menu-ensure-use-cached' for details.")
118 (defvar filesets-update-cache-file-flag nil
119 "Non-nil means the cache needs updating.")
120 (defvar filesets-ignore-next-set-default nil
121 "List of custom variables for which the next `set-default' will be ignored.")
123 (defvar filesets-output-buffer-flag nil
124 "Non-nil means the current buffer is an output buffer created by filesets.
125 Is buffer local variable.")
127 (defvar filesets-verbosity 1
128 "An integer defining the level of verbosity.
129 0 means no messages at all.")
131 (defvar filesets-menu-ensure-use-cached
132 (and (featurep 'xemacs)
133 (if (fboundp 'emacs-version>=)
134 (not (emacs-version>= 21 5))))
135 "Make sure (X)Emacs uses filesets' cache.
137 Well, if you use XEmacs (prior to 21.5?) custom.el is loaded after
138 init.el. This means that settings saved in the cache file (see
139 `filesets-menu-cache-file') will be overwritten by custom.el. In order
140 to ensure the use of the cache file, set this variable to t -- which is
141 the default for XEmacs prior to 21.5. If you want to change this value
142 put \"(setq filesets-menu-ensure-use-cached VALUE)\" into your startup
143 file -- before loading filesets.el.
145 So, when should you think about setting this value to t? If filesets.el
146 is loaded before user customizations. Thus, if (require 'filesets)
147 precedes the custom-set-variables command or, for XEmacs, if init.el is
148 loaded before custom.el, set this variable to t.")
151 ;;; utils
152 (defun filesets-filter-list (lst cond-fn)
153 "Remove all elements not conforming to COND-FN from list LST.
154 COND-FN takes one argument: the current element."
155 ; (remove* 'dummy lst :test (lambda (dummy elt)
156 ; (not (funcall cond-fn elt)))))
157 (let ((rv nil))
158 (dolist (elt lst rv)
159 (when (funcall cond-fn elt)
160 (setq rv (append rv (list elt)))))))
162 (defun filesets-ormap (fsom-pred lst)
163 "Return the tail of LST for the head of which FSOM-PRED is non-nil."
164 (let ((fsom-lst lst)
165 (fsom-rv nil))
166 (while (and (not (null fsom-lst))
167 (null fsom-rv))
168 (if (funcall fsom-pred (car fsom-lst))
169 (setq fsom-rv fsom-lst)
170 (setq fsom-lst (cdr fsom-lst))))
171 fsom-rv))
173 (defun filesets-some (fss-pred fss-lst)
174 "Return non-nil if FSS-PRED is non-nil for any element of FSS-LST.
175 Like `some', return the first value of FSS-PRED that is non-nil."
176 (catch 'exit
177 (dolist (fss-this fss-lst nil)
178 (let ((fss-rv (funcall fss-pred fss-this)))
179 (when fss-rv
180 (throw 'exit fss-rv))))))
181 ;(fset 'filesets-some 'some) ;; or use the cl function
183 (defun filesets-member (fsm-item fsm-lst &rest fsm-keys)
184 "Find the first occurrence of FSM-ITEM in FSM-LST.
185 It is supposed to work like cl's `member*'. At the moment only the :test
186 key is supported."
187 (let ((fsm-test (or (plist-get fsm-keys ':test)
188 (function equal))))
189 (filesets-ormap (lambda (fsm-this)
190 (funcall fsm-test fsm-item fsm-this))
191 fsm-lst)))
192 ;(fset 'filesets-member 'member*) ;; or use the cl function
194 (defun filesets-sublist (lst beg &optional end)
195 "Get the sublist of LST from BEG to END - 1."
196 (let ((rv nil)
197 (i beg)
198 (top (or end
199 (length lst))))
200 (while (< i top)
201 (setq rv (append rv (list (nth i lst))))
202 (setq i (+ i 1)))
203 rv))
205 (defun filesets-select-command (cmd-list)
206 "Select one command from CMD-LIST -- a string with space separated names."
207 (let ((this (shell-command-to-string
208 (format "which --skip-alias %s 2> /dev/null | head -n 1"
209 cmd-list))))
210 (if (equal this "")
212 (file-name-nondirectory (substring this 0 (- (length this) 1))))))
214 (defun filesets-which-command (cmd)
215 "Call \"which CMD\"."
216 (shell-command-to-string (format "which %s" cmd)))
218 (defun filesets-which-command-p (cmd)
219 "Call \"which CMD\" and return non-nil if the command was found."
220 (when (string-match (format "\\(/[^/]+\\)?/%s" cmd)
221 (filesets-which-command cmd))
222 cmd))
224 (defun filesets-message (level &rest args)
225 "Show a message only if LEVEL is greater or equal then `filesets-verbosity'."
226 (when (<= level (abs filesets-verbosity))
227 (apply 'message args)))
230 ;;; config file
231 (defun filesets-save-config ()
232 "Save filesets' customizations."
233 (interactive)
234 (customize-save-customized))
236 (defun filesets-reset-fileset (&optional fileset no-cache)
237 "Reset the cached values for one or all filesets."
238 (if fileset
239 (setq filesets-submenus (lax-plist-put filesets-submenus fileset nil))
240 (setq filesets-submenus nil))
241 (setq filesets-has-changed-flag t)
242 (setq filesets-update-cache-file-flag (or filesets-update-cache-file-flag
243 (not no-cache))))
245 (defun filesets-set-config (fileset var val)
246 "Set-default wrapper function."
247 (filesets-reset-fileset fileset)
248 (set-default var val))
249 ; (customize-set-variable var val))
250 ; (filesets-build-menu))
252 ;; It seems this is a workaround for the XEmacs issue described in the
253 ;; doc-string of filesets-menu-ensure-use-cached. Under Emacs this is
254 ;; essentially just `set-default'.
255 (defun filesets-set-default (sym val &optional init-flag)
256 "Set-default wrapper function used in conjunction with `defcustom'.
257 If SYM is in the list `filesets-ignore-next-set-default', delete
258 it from that list, and return nil. Otherwise, set the value of
259 SYM to VAL and return t. If INIT-FLAG is non-nil, set with
260 `custom-initialize-set', otherwise with `set-default'."
261 (let ((ignore-flag (member sym filesets-ignore-next-set-default)))
262 (if ignore-flag
263 (setq filesets-ignore-next-set-default
264 (delete sym filesets-ignore-next-set-default))
265 (if init-flag
266 (custom-initialize-set sym val)
267 (set-default sym val)))
268 (not ignore-flag)))
270 (defun filesets-set-default! (sym val)
271 "Call `filestes-set-default' and reset cached data (i.e. rebuild menu)."
272 (when (filesets-set-default sym val)
273 (filesets-reset-fileset)))
275 (defun filesets-set-default+ (sym val)
276 "Call `filestes-set-default' and reset filesets' standard menu."
277 (when (filesets-set-default sym val)
278 (setq filesets-has-changed-flag t)))
279 ; (filesets-reset-fileset nil t)))
281 (defvar filesets-data)
283 (defun filesets-data-set-default (sym val)
284 "Set the default for `filesets-data'."
285 (if filesets-menu-use-cached-flag
286 (setq filesets-menu-use-cached-flag nil)
287 (when (default-boundp 'filesets-data)
288 (let ((modified-filesets
289 (filesets-filter-list val
290 (lambda (x)
291 (let ((name (car x))
292 (data (cdr x)))
293 (let ((elt (assoc name filesets-data)))
294 (or (not elt)
295 (not (equal data (cdr elt))))))))))
296 (dolist (x modified-filesets)
297 (filesets-reset-fileset (car x))))))
298 (filesets-set-default sym val))
300 ;;; configuration
301 (defgroup filesets nil
302 "The fileset swapper."
303 :prefix "filesets-"
304 :group 'convenience
305 :version "22.1")
307 (defcustom filesets-menu-name "Filesets"
308 "Filesets' menu name."
309 :set (function filesets-set-default)
310 :type 'string
311 :group 'filesets)
313 (defcustom filesets-menu-path '("File") ; cf recentf-menu-path
314 "The menu under which the filesets menu should be inserted.
315 See `add-submenu' for documentation."
316 :set (function filesets-set-default)
317 :type '(choice (const :tag "Top Level" nil)
318 (sexp :tag "Menu Path"))
319 :version "23.1" ; was nil
320 :group 'filesets)
322 (defcustom filesets-menu-before "Open File..." ; cf recentf-menu-before
323 "The name of a menu before which this menu should be added.
324 See `add-submenu' for documentation."
325 :set (function filesets-set-default)
326 :type '(choice (string :tag "Name")
327 (const :tag "Last" nil))
328 :version "23.1" ; was "File"
329 :group 'filesets)
331 (defcustom filesets-menu-in-menu nil
332 "Use that instead of `current-menubar' as the menu to change.
333 See `add-submenu' for documentation."
334 :set (function filesets-set-default)
335 :type 'sexp
336 :group 'filesets)
338 (defcustom filesets-menu-shortcuts-flag t
339 "Non-nil means to prepend menus with hopefully unique shortcuts."
340 :set (function filesets-set-default!)
341 :type 'boolean
342 :group 'filesets)
344 (defcustom filesets-menu-shortcuts-marker "%_"
345 "String for marking menu shortcuts."
346 :set (function filesets-set-default!)
347 :type 'string
348 :group 'filesets)
350 ;;(defcustom filesets-menu-cnvfp-flag nil
351 ;; "*Non-nil means show \"Convert :pattern to :files\" entry for :pattern menus."
352 ;; :set (function filesets-set-default!)
353 ;; :type 'boolean
354 ;; :group 'filesets)
356 (defcustom filesets-menu-cache-file
357 (locate-user-emacs-file "filesets-cache.el")
358 "File to be used for saving the filesets menu between sessions.
359 Set this to \"\", to disable caching of menus.
360 Don't forget to check out `filesets-menu-ensure-use-cached'."
361 :set (function filesets-set-default)
362 :type 'file
363 :group 'filesets)
364 (put 'filesets-menu-cache-file 'risky-local-variable t)
366 (defcustom filesets-menu-cache-contents
367 '(filesets-be-docile-flag
368 filesets-submenus
369 filesets-menu-cache
370 filesets-ingroup-cache)
371 "Stuff we want to save in `filesets-menu-cache-file'.
373 Possible uses: don't save configuration data in the main startup files
374 but in filesets's own cache. In this case add `filesets-data' to this
375 list.
377 There is a second reason for putting `filesets-data' on this list. If
378 you frequently add and remove buffers on the fly to :files filesets, you
379 don't need to save your customizations if `filesets-data' is being
380 mirrored in the cache file. In this case the version in the cache file
381 is the current one, and the version in your startup file will be
382 silently updated later on.
384 If you want caching to work properly, at least `filesets-submenus',
385 `filesets-menu-cache', and `filesets-ingroup-cache' should be in this
386 list.
388 Don't forget to check out `filesets-menu-ensure-use-cached'."
389 :set (function filesets-set-default)
390 :type '(repeat
391 (choice :tag "Variable"
392 (const :tag "filesets-submenus"
393 :value filesets-submenus)
394 (const :tag "filesets-menu-cache"
395 :value filesets-menu-cache)
396 (const :tag "filesets-ingroup-cache"
397 :value filesets-ingroup-cache)
398 (const :tag "filesets-data"
399 :value filesets-data)
400 (const :tag "filesets-external-viewers"
401 :value filesets-external-viewers)
402 (const :tag "filesets-ingroup-patterns"
403 :value filesets-ingroup-patterns)
404 (const :tag "filesets-be-docile-flag"
405 :value filesets-be-docile-flag)
406 (sexp :tag "Other" :value nil)))
407 :group 'filesets)
409 (defcustom filesets-cache-fill-content-hooks nil
410 "Hooks to run when writing the contents of filesets' cache file.
412 The hook is called with the cache file as current buffer and the cursor
413 at the last position. I.e. each hook has to make sure that the cursor is
414 at the last position.
416 Possible uses: If you don't want to save `filesets-data' in your normal
417 configuration file, you can add a something like this
419 \(lambda ()
420 \(insert (format \"(setq-default filesets-data '%S)\"
421 filesets-data))
422 \(newline 2))
424 to this hook.
426 Don't forget to check out `filesets-menu-ensure-use-cached'."
427 :set (function filesets-set-default)
428 :type 'hook
429 :group 'filesets)
431 (defcustom filesets-cache-hostname-flag nil
432 "Non-nil means cache the hostname.
433 If the current name differs from the cached one,
434 rebuild the menu and create a new cache file."
435 :set (function filesets-set-default)
436 :type 'boolean
437 :group 'filesets)
439 (defcustom filesets-cache-save-often-flag nil
440 "Non-nil means save buffer on every change of the filesets menu.
441 If this variable is set to nil and if Emacs crashes, the cache and
442 filesets-data could get out of sync. Set this to t if this happens from
443 time to time or if the fileset cache causes troubles."
444 :set (function filesets-set-default)
445 :type 'boolean
446 :group 'filesets)
448 (defcustom filesets-max-submenu-length 25
449 "Maximum length of submenus.
450 Set this value to 0 to turn menu splitting off. BTW, parts of submenus
451 will not be rewrapped if their length exceeds this value."
452 :set (function filesets-set-default)
453 :type 'integer
454 :group 'filesets)
456 (defcustom filesets-max-entry-length 50
457 "Truncate names of splitted submenus to this length."
458 :set (function filesets-set-default)
459 :type 'integer
460 :group 'filesets)
462 (defcustom filesets-browse-dir-function 'dired
463 "A function or command used for browsing directories.
464 When using an external command, \"%s\" will be replaced with the
465 directory's name.
467 Note: You have to manually rebuild the menu if you change this value."
468 :set (function filesets-set-default)
469 :type '(choice :tag "Function:"
470 (const :tag "dired"
471 :value dired)
472 (list :tag "Command"
473 :value ("" "%s")
474 (string :tag "Name")
475 (string :tag "Arguments"))
476 (function :tag "Function"
477 :value nil))
478 :group 'filesets)
480 (defcustom filesets-open-file-function 'filesets-find-or-display-file
481 "The function used for opening files.
483 `filesets-find-or-display-file' ... Filesets' default function for
484 visiting files. This function checks if an external viewer is defined
485 for a specific file type. Either this viewer, if defined, or
486 `find-file' will be used to visit a file.
488 `filesets-find-file' ... An alternative function that always uses
489 `find-file'. If `filesets-be-docile-flag' is true, a file, which isn't
490 readable, will not be opened.
492 Caveat: Changes will take effect only after rebuilding the menu."
493 :set (function filesets-set-default)
494 :type '(choice :tag "Function:"
495 (const :tag "filesets-find-or-display-file"
496 :value filesets-find-or-display-file)
497 (const :tag "filesets-find-file"
498 :value filesets-find-file)
499 (function :tag "Function"
500 :value nil))
501 :group 'filesets)
503 (defcustom filesets-save-buffer-function 'save-buffer
504 "The function used to save a buffer.
505 Caveat: Changes will take effect after rebuilding the menu."
506 :set (function filesets-set-default)
507 :type '(choice :tag "Function:"
508 (const :tag "save-buffer"
509 :value save-buffer)
510 (function :tag "Function"
511 :value nil))
512 :group 'filesets)
514 (defcustom filesets-find-file-delay
515 (if (and (featurep 'xemacs) gutter-buffers-tab-visible-p)
518 "Delay before calling `find-file'.
519 This is for calls via `filesets-find-or-display-file'
520 or `filesets-find-file'.
522 Set this to 0, if you don't use XEmacs' buffer tabs."
523 :set (function filesets-set-default)
524 :type 'number
525 :group 'filesets)
527 (defcustom filesets-be-docile-flag nil
528 "Non-nil means don't complain if a file or a directory doesn't exist.
529 This is useful if you want to use the same startup files in different
530 computer environments."
531 :set (function filesets-set-default)
532 :type 'boolean
533 :group 'filesets)
535 (defcustom filesets-sort-menu-flag t
536 "Non-nil means sort the filesets menu alphabetically."
537 :set (function filesets-set-default)
538 :type 'boolean
539 :group 'filesets)
541 (defcustom filesets-sort-case-sensitive-flag t
542 "Non-nil means sorting of the filesets menu is case sensitive."
543 :set (function filesets-set-default)
544 :type 'boolean
545 :group 'filesets)
547 (defcustom filesets-tree-max-level 3
548 "Maximum scan depth for directory trees.
549 A :tree fileset is defined by a base directory the contents of which
550 will be recursively added to the menu. `filesets-tree-max-level' tells up
551 to which level the directory structure should be scanned/listed,
552 i.e. how deep the menu should be. Try something like
554 \(\"HOME -- only one level\"
555 \(:tree \"~\" \"^[^.].*[^~]$\")
556 \(:tree-max-level 1)
557 \(:filter-dirs-flag t))
558 \(\"HOME -- up to 3 levels\"
559 \(:tree \"~\" \"^[^.].*[^~]$\")
560 \(:tree-max-level 3)
561 \(:filter-dirs-flag t))
563 and it should become clear what this option is about. In any case,
564 including directory trees to the menu can take a lot of memory."
565 :set (function filesets-set-default)
566 :type 'integer
567 :group 'filesets)
569 (defcustom filesets-commands
570 `(("Isearch"
571 multi-isearch-files
572 (filesets-cmd-isearch-getargs))
573 ("Isearch (regexp)"
574 multi-isearch-files-regexp
575 (filesets-cmd-isearch-getargs))
576 ("Query Replace"
577 perform-replace
578 (filesets-cmd-query-replace-getargs))
579 ("Query Replace (regexp)"
580 perform-replace
581 (filesets-cmd-query-replace-regexp-getargs))
582 ("Grep <<selection>>"
583 "grep"
584 ("-n " filesets-get-quoted-selection " " "<<file-name>>"))
585 ("Run Shell Command"
586 filesets-cmd-shell-command
587 (filesets-cmd-shell-command-getargs)))
588 "Commands to run on filesets.
589 An association list of names, functions, and an argument list (or a
590 function that returns one) to be run on a filesets' files.
592 The argument <file-name> or <<file-name>> (quoted) will be replaced with
593 the filename."
594 :set (function filesets-set-default+)
595 :type '(repeat :tag "Commands"
596 (list :tag "Definition" :value ("")
597 (string "Name")
598 (choice :tag "Command"
599 (string :tag "String")
600 (function :tag "Function"))
601 (repeat :tag "Argument List"
602 (choice :tag "Arguments"
603 (sexp :tag "Sexp"
604 :value nil)
605 (string :tag "File Name"
606 :value "<file-name>")
607 (string :tag "Quoted File Name"
608 :value "<<file-name>>")
609 (function :tag "Function"
610 :value nil)))))
611 :group 'filesets)
612 (put 'filesets-commands 'risky-local-variable t)
614 (defcustom filesets-external-viewers
615 (let
616 ;; ((ps-cmd (or (and (boundp 'my-ps-viewer) my-ps-viewer)
617 ;; (filesets-select-command "ggv gv")))
618 ;; (pdf-cmd (or (and (boundp 'my-ps-viewer) my-pdf-viewer)
619 ;; (filesets-select-command "xpdf acroread")))
620 ;; (dvi-cmd (or (and (boundp 'my-ps-viewer) my-dvi-viewer)
621 ;; (filesets-select-command "xdvi tkdvi")))
622 ;; (doc-cmd (or (and (boundp 'my-ps-viewer) my-doc-viewer)
623 ;; (filesets-select-command "antiword")))
624 ;; (pic-cmd (or (and (boundp 'my-ps-viewer) my-pic-viewer)
625 ;; (filesets-select-command "gqview ee display"))))
626 ((ps-cmd "ggv")
627 (pdf-cmd "xpdf")
628 (dvi-cmd "xdvi")
629 (doc-cmd "antiword")
630 (pic-cmd "gqview"))
631 `(("^.+\\..?html?$" browse-url
632 ((:ignore-on-open-all t)))
633 ("^.+\\.pdf$" ,pdf-cmd
634 ((:ignore-on-open-all t)
635 (:ignore-on-read-text t)
636 (:constraint-flag ,pdf-cmd)))
637 ("^.+\\.e?ps\\(.gz\\)?$" ,ps-cmd
638 ((:ignore-on-open-all t)
639 (:ignore-on-read-text t)
640 (:constraint-flag ,ps-cmd)))
641 ("^.+\\.dvi$" ,dvi-cmd
642 ((:ignore-on-open-all t)
643 (:ignore-on-read-text t)
644 (:constraint-flag ,dvi-cmd)))
645 ("^.+\\.doc$" ,doc-cmd
646 ((:capture-output t)
647 (:ignore-on-read-text t)
648 (:constraint-flag ,doc-cmd)))
649 ("^.+\\.\\(tiff\\|xpm\\|gif\\|pgn\\)$" ,pic-cmd
650 ((:ignore-on-open-all t)
651 (:ignore-on-read-text t)
652 (:constraint-flag ,pic-cmd)))))
653 "Association list of file patterns and external viewers for use with
654 `filesets-find-or-display-file'.
656 Has the form ((FILE-PATTERN VIEWER PROPERTIES) ...), VIEWER being either a
657 function or a command name as string.
659 Properties is an association list determining filesets' behavior in
660 several conditions. Choose one from this list:
662 :ignore-on-open-all ... Don't open files of this type automatically --
663 i.e. on open-all-files-events or when running commands
665 :capture-output ... capture an external viewer output
667 :constraintp FUNCTION ... use this viewer only if FUNCTION returns non-nil
669 :constraint-flag SEXP ... use this viewer only if SEXP evaluates to non-nil
671 :open-hook HOOK ... run hooks after spawning the viewer -- mainly useful
672 in conjunction with :capture-output
674 :args (FORMAT-STRING or SYMBOL or FUNCTION) ... a list of arguments
675 \(defaults to (list \"%S\")) when using shell commands
677 Avoid modifying this variable and achieve minor speed-ups by setting the
678 variables my-ps-viewer, my-pdf-viewer, my-dvi-viewer, my-pic-viewer.
680 In order to view pdf or rtf files in an Emacs buffer, you could use these:
683 \(\"^.+\\\\.pdf\\\\'\" \"pdftotext\"
684 \((:capture-output t)
685 \(:args (\"%S - | fmt -w \" window-width))
686 \(:ignore-on-read-text t)
687 \(:constraintp (lambda ()
688 \(and \(filesets-which-command-p \"pdftotext\")
689 \(filesets-which-command-p \"fmt\"))))))
690 \(\"^.+\\\\.rtf\\\\'\" \"rtf2htm\"
691 \((:capture-output t)
692 \(:args (\"%S 2> /dev/null | w3m -dump -T text/html\"))
693 \(:ignore-on-read-text t)
694 \(:constraintp (lambda ()
695 \(and (filesets-which-command-p \"rtf2htm\")
696 \(filesets-which-command-p \"w3m\"))))))"
697 :set (function filesets-set-default)
698 :type '(repeat :tag "Viewer"
699 (list :tag "Definition"
700 :value ("^.+\\.suffix$" "")
701 (regexp :tag "Pattern")
702 (choice :tag "Viewer"
703 (symbol :tag "Function" :value nil)
704 (string :tag "Program" :value ""))
705 (repeat :tag "Properties"
706 (choice
707 (list :tag ":constraintp"
708 :value (:constraintp)
709 (const :format ""
710 :value :constraintp)
711 (function :tag "Function"))
712 (list :tag ":constraint-flag"
713 :value (:constraint-flag)
714 (const :format ""
715 :value :constraint-flag)
716 (sexp :tag "Symbol"))
717 (list :tag ":ignore-on-open-all"
718 :value (:ignore-on-open-all t)
719 (const :format ""
720 :value :ignore-on-open-all)
721 (boolean :tag "Boolean"))
722 (list :tag ":ignore-on-read-text"
723 :value (:ignore-on-read-text t)
724 (const :format ""
725 :value :ignore-on-read-text)
726 (boolean :tag "Boolean"))
727 (list :tag ":args"
728 :value (:args)
729 (const :format ""
730 :value :args)
731 (repeat :tag "List"
732 (choice :tag "Arguments"
733 (string :tag "String"
734 :value "")
735 (symbol :tag "Symbol"
736 :value nil)
737 (function :tag "Function"
738 :value nil))))
739 (list :tag ":open-hook"
740 :value (:open-hook)
741 (const :format ""
742 :value :open-hook)
743 (hook :tag "Hook"))
744 ; (list :tag ":close-hook"
745 ; :value (:close-hook)
746 ; (const :format ""
747 ; :value :close-hook)
748 ; (hook :tag "Hook"))
749 (list :tag ":capture-output"
750 :value (:capture-output t)
751 (const :format ""
752 :value :capture-output)
753 (boolean :tag "Boolean"))))))
754 :group 'filesets)
755 (put 'filesets-external-viewers 'risky-local-variable t)
757 (defcustom filesets-ingroup-patterns
758 '(("^.+\\.tex$" t
759 (((:name "Package")
760 (:pattern "\\\\usepackage\\W*\\(\\[[^\]]*\\]\\W*\\)?{\\W*\\(.+\\)\\W*}")
761 (:match-number 2)
762 (:stub-flag t)
763 (:get-file-name (lambda (master file)
764 (filesets-which-file master
765 (concat file ".sty")
766 (filesets-convert-path-list
767 (or (getenv "MY_TEXINPUTS")
768 (getenv "TEXINPUTS")))))))
769 ((:name "Include")
770 (:pattern "\\\\include\\W*{\\W*\\(.+\\)\\W*}")
771 (:get-file-name (lambda (master file)
772 (filesets-which-file master
773 (concat file ".tex")
774 (filesets-convert-path-list
775 (or (getenv "MY_TEXINPUTS")
776 (getenv "TEXINPUTS"))))))
777 (:scan-depth 5))
778 ((:name "Input")
779 (:pattern "\\\\input\\W*{\\W*\\(.+\\)\\W*}")
780 (:stubp (lambda (a b) (not (filesets-files-in-same-directory-p a b))))
781 (:get-file-name (lambda (master file)
782 (filesets-which-file master
783 (concat file ".tex")
784 (filesets-convert-path-list
785 (or (getenv "MY_TEXINPUTS")
786 (getenv "TEXINPUTS"))))))
787 (:scan-depth 5))
788 ((:name "Bibliography")
789 (:pattern "\\\\bibliography\\W*{\\W*\\(.+\\)\\W*}")
790 (:get-file-name (lambda (master file)
791 (filesets-which-file master
792 (concat file ".bib")
793 (filesets-convert-path-list
794 (or (getenv "MY_BIBINPUTS")
795 (getenv "BIBINPUTS")))))))))
796 ("^.+\\.el$" t
797 (((:name "Require")
798 (:pattern "(require\\W+'\\(.+\\))")
799 (:stubp (lambda (a b) (not (filesets-files-in-same-directory-p a b))))
800 (:get-file-name (lambda (master file)
801 (filesets-which-file master
802 (concat file ".el")
803 load-path))))
804 ((:name "Load")
805 (:pattern "(load\\(-library\\)?\\W+\"\\(.+\\)\")")
806 (:match-number 2)
807 (:get-file-name (lambda (master file)
808 (filesets-which-file master file load-path))))))
809 ("^\\([A-ZÄÖÜ][a-zäöüß]+\\([A-ZÄÖÜ][a-zäöüß]+\\)+\\)$" t
810 (((:pattern "\\<\\([A-ZÄÖÜ][a-zäöüß]+\\([A-ZÄÖÜ][a-zäöüß]+\\)+\\)\\>")
811 (:scan-depth 5)
812 (:stubp (lambda (a b) (not (filesets-files-in-same-directory-p a b))))
813 (:case-sensitive t)
814 (:get-file-name (lambda (master file)
815 (filesets-which-file
816 master
817 file
818 (if (boundp 'emacs-wiki-directories)
819 emacs-wiki-directories
820 nil))))))))
822 "Inclusion group definitions.
824 Define how to find included file according to a file's mode (being
825 defined by a file pattern).
827 A valid entry has the form (FILE-PATTERN REMOVE-DUPLICATES-FLAG
828 CMD-DEF1 ...), CMD-DEF1 being a plist containing the fields :pattern
829 \(mandatory), :name, :get-file-name, :match-number, :scan-depth,
830 :preprocess, :case-sensitive.
832 File Pattern ... A regexp matching the file's name for which the
833 following rules should be applied.
835 Remove Duplicates ... If t, only the first occurrence of an included
836 file is retained. (See below for a full explanation.)
838 :name STRING ... This pattern's name.
840 :pattern REGEXP ... A regexp matching the command. This regexp has to
841 include a group that holds the name of the included file.
843 :get-file-name FUNCTION (default: `filesets-which-file') ... A function
844 that takes two arguments (the path of the master file and the name
845 of the included file) and returns a valid path or nil -- if the
846 subfile can't be found.
848 :match-number INTEGER (default: 1) ... The number of the match/group
849 in the pattern holding the subfile's name. 0 refers the whole
850 match, 1 to the first group.
852 :stubp FUNCTION ... if (FUNCTION MASTER INCLUDED-FILE) returns non-nil,
853 INCLUDED-FILE is a stub -- see below.
855 :stub-flag ... files of this type are stubs -- see below.
857 :scan-depth INTEGER (default: 0) ... Whether included files should be
858 rescanned. Set this to 0 to disable re-scanning of included file.
860 :preprocess FUNCTION ... A function modifying a buffer holding the
861 master file so that pattern matching becomes easier. This is usually
862 used to narrow a buffer to the relevant region. This function could also
863 be destructive and simply delete non-relevant text.
865 :case-sensitive BOOLEAN (default: nil) ... Whether a pattern is
866 case-sensitive or not.
869 Stubs:
871 First, a stub is a file that shows up in the menu but will not be
872 included in an ingroup's file listing -- i.e. filesets will never
873 operate on this file automatically. Secondly, in opposition to normal
874 files stubs are not scanned for new inclusion groups. This is useful if
875 you want to have quick access to library headers.
877 In the menu, an asterisk is appended to the stub's name.
880 Remove Duplicates:
882 E.g. File A and file B refer to file X; X refers to A. If
883 you choose not to remove duplicates the tree would look like:
885 M + A - X - A ...
886 B - X - A ...
888 As you can see, there is some chance that you run in circles.
889 Nevertheless, up to some degree this could still be what you want.
891 With duplicates removed, it would be:
893 M + A - X
895 :set (function filesets-set-default)
896 :type '(repeat
897 :tag "Include"
898 (list
899 :tag "Definition" :value ("^.+\\.suffix$" t)
900 (regexp :tag "File Pattern" :value "^.+\\.suffix$")
901 (boolean :tag "Remove Duplicates" :value t)
902 (repeat :tag "Commands"
903 (repeat :tag "Command"
904 (choice
905 :tag "Definition"
906 (list :tag ":name"
907 :value (:name "")
908 (const :format "" :value :name)
909 (string :tag "String"))
910 (list :tag ":pattern"
911 :value (:pattern "\\<CMD\\W*\\(.+\\)\\>")
912 (const :format "" :value :pattern)
913 (regexp :tag "RegExp"))
914 (list :tag ":get-file-name"
915 :value (:get-file-name)
916 (const :format "" :value :get-file-name)
917 (function :tag "Function"))
918 (list :tag ":match-number"
919 :value (:match-number 1)
920 (const :format "" :value :match-number)
921 (integer :tag "Integer"))
922 (list :tag ":stub-flag"
923 :value (:stub-flag t)
924 (const :format "" :value :stub-flag)
925 (boolean :tag "Boolean"))
926 (list :tag ":stubp"
927 :value (:stubp)
928 (const :format "" :value :stubp)
929 (function :tag "Function"))
930 (list :tag ":scan-depth"
931 :value (:scan-depth 0)
932 (const :format "" :value :scan-depth)
933 (integer :tag "Integer"))
934 (list :tag ":case-sensitive"
935 :value (:case-sensitive)
936 (const :format "" :value :case-sensitive)
937 (boolean :tag "Boolean"))
938 (list :tag ":preprocess"
939 :value (:preprocess)
940 (const :format "" :value :preprocess)
941 (function :tag "Function")))))))
942 :group 'filesets)
943 (put 'filesets-ingroup-patterns 'risky-local-variable t)
945 (defcustom filesets-data nil
946 "Fileset definitions.
948 A fileset is either a list of files, a file pattern, a base directory
949 and a search pattern (for files), or a base file. Changes to this
950 variable will take effect after rebuilding the menu.
952 Caveat: Fileset names have to be unique.
954 Example definition:
955 '\(\(\"My Wiki\"
956 \(:ingroup \"~/Etc/My-Wiki/WikiContents\"))
957 \(\"My Homepage\"
958 \(:pattern \"~/public_html/\" \"^.+\\\\.html$\")
959 \(:open filesets-find-file))
960 \(\"User Configuration\"
961 \(:files \"~/.xinitrc\"
962 \"~/.bashrc\"
963 \"~/.bash_profile\"))
964 \(\"HOME\"
965 \(:tree \"~\" \"^[^.].*[^~]$\")
966 \(:filter-dirs-flag t)))
968 `filesets-data' is a list of (NAME-AS-STRING . DEFINITION), DEFINITION
969 being an association list with the fields:
971 :files FILE-1 .. FILE-N ... a list of files belonging to a fileset
973 :ingroup FILE-NAME ... an inclusion group's base file.
975 :tree ROOT-DIR PATTERN ... a base directory and a file pattern
977 :pattern DIR PATTERN ... a base directory and a regexp matching
978 files in that directory. Usually,
979 PATTERN has the form '^REGEXP$'. Unlike
980 :tree, this form does not descend
981 recursively into subdirectories.
983 :filter-dirs-flag BOOLEAN ... is only used in conjunction with :tree.
985 :tree-max-level INTEGER ... recurse into directories this many levels
986 \(see `filesets-tree-max-level' for a full explanation)
988 :dormant-flag BOOLEAN ... non-nil means don't show this item in the
989 menu; dormant filesets can still be manipulated via commands available
990 from the minibuffer -- e.g. `filesets-open', `filesets-close', or
991 `filesets-run-cmd'
993 :dormant-p FUNCTION ... a function returning :dormant-flag
995 :open FUNCTION ... the function used to open file belonging to this
996 fileset. The function takes a file name as argument
998 :save FUNCTION ... the function used to save file belonging to this
999 fileset; it takes no arguments, but works on the current buffer.
1001 Either :files, :pattern, :tree, or :ingroup must be supplied. :files
1002 overrules :tree, :tree overrules :pattern, :pattern overrules :ingroup,
1003 i.e. these tags are mutually exclusive. The fields :open and :save are
1004 optional.
1006 In conjunction with the :tree tag, :save is void. :open refers to the
1007 function used for opening files in a directory, not for opening the
1008 directory. For browsing directories, `filesets-browse-dir-function' is used.
1010 Before using :ingroup, make sure that the file type is already
1011 defined in `filesets-ingroup-patterns'."
1012 :group 'filesets
1013 :set (function filesets-data-set-default)
1014 :type '(repeat
1015 (cons :tag "Fileset"
1016 (string :tag "Name" :value "")
1017 (repeat :tag "Data"
1018 (choice
1019 :tag "Type" :value nil
1020 (list :tag "Pattern"
1021 :value (:pattern "~/" "^.+\\.suffix$")
1022 (const :format "" :value :pattern)
1023 (directory :tag "Dir")
1024 (regexp :tag "Pattern"))
1025 (cons :tag "Files"
1026 :value (:files)
1027 (const :format "" :value :files)
1028 (repeat :tag "Files" file))
1029 (list :tag "Single File"
1030 :value (:file "~/")
1031 (const :format "" :value :file)
1032 (file :tag "File"))
1033 (list :tag "Inclusion group"
1034 :value (:ingroup "~/")
1035 (const :format "" :value :ingroup)
1036 (file :tag "File" :value "~/"))
1037 (list :tag "Directory Tree"
1038 :value (:tree "~/" "^.+\\.suffix$")
1039 (const :format "" :value :tree)
1040 (directory :tag "Dir")
1041 (regexp :tag "Pattern"))
1042 (list :tag "Filter directories"
1043 :value (:filter-dirs-flag)
1044 (const :format "" :value :filter-dirs-flag)
1045 (boolean :tag "Boolean" :value nil))
1046 (list :tag "Scanning depth"
1047 :value (:tree-max-level 3)
1048 (const :format "" :value :tree-max-level)
1049 (integer :tag "Integer"))
1050 (list :tag "Verbosity"
1051 :value (:verbosity 1)
1052 (const :format "" :value :verbosity)
1053 (integer :tag "Integer"))
1054 (list :tag "Conceal fileset (Flag)"
1055 :value (:dormant-flag)
1056 (const :format "" :value :dormant-flag)
1057 (boolean :tag "Boolean"))
1058 (list :tag "Conceal fileset (Function)"
1059 :value (:dormant-p)
1060 (const :format "" :value :dormant-p)
1061 (function :tag "Function"))
1062 (list :tag "Save function"
1063 :value (:save)
1064 (const :format "" :value :save)
1065 (function :tag "Function"))
1066 (list :tag "Open function"
1067 :value (:open)
1068 (const :format "" :value :open)
1069 (function :tag "Function")))))))
1070 (put 'filesets-data 'risky-local-variable t)
1073 (defcustom filesets-query-user-limit 15
1074 "Query the user before opening a fileset with that many files."
1075 :set (function filesets-set-default)
1076 :type 'integer
1077 :group 'filesets)
1079 ;;; Emacs compatibility
1080 (eval-and-compile
1081 (if (featurep 'xemacs)
1082 (fset 'filesets-error 'error)
1084 (require 'easymenu)
1086 (defun filesets-error (class &rest args)
1087 "`error' wrapper."
1088 (error "%s" (mapconcat 'identity args " ")))
1092 (defun filesets-filter-dir-names (lst &optional negative)
1093 "Remove non-directory names from a list of strings.
1094 If NEGATIVE is non-nil, remove all directory names."
1095 (filesets-filter-list lst
1096 (lambda (x)
1097 (and (not (string-match "^\\.+/$" x))
1098 (if negative
1099 (not (string-match "[:/\\]$" x))
1100 (string-match "[:/\\]$" x))))))
1102 (defun filesets-conditional-sort (lst &optional access-fn)
1103 "Return a sorted copy of LST, LST being a list of strings.
1104 If `filesets-sort-menu-flag' is nil, return LST itself.
1106 ACCESS-FN ... function to get the string value of LST's elements."
1107 (if filesets-sort-menu-flag
1108 (let* ((fni (or access-fn
1109 (function identity)))
1110 (fn (if filesets-sort-case-sensitive-flag
1111 (lambda (a b)
1112 (string< (funcall fni a)
1113 (funcall fni b)))
1114 (lambda (a b)
1115 (string< (upcase (funcall fni a))
1116 (upcase (funcall fni b)))))))
1117 (sort (copy-sequence lst) fn))
1118 lst))
1120 (defun filesets-directory-files (dir &optional
1121 pattern what full-flag match-dirs-flag)
1122 "Get WHAT (:files or :dirs) in DIR.
1123 If PATTERN is provided return only those entries matching this
1124 regular expression.
1125 If MATCH-DIRS-FLAG is non-nil, also match directory entries.
1126 Return full path if FULL-FLAG is non-nil."
1127 (filesets-message 2 "Filesets: scanning %S" dir)
1128 (cond
1129 ((file-exists-p dir)
1130 (let ((files nil)
1131 (dirs nil))
1132 (dolist (this (file-name-all-completions "" dir))
1133 (cond
1134 ((string-match "^\\.+/$" this)
1135 nil)
1136 ((string-match "[:/\\]$" this)
1137 (when (or (not match-dirs-flag)
1138 (not pattern)
1139 (string-match pattern this))
1140 (filesets-message 5 "Filesets: matched dir %S with pattern %S"
1141 this pattern)
1142 (setq dirs (cons this dirs))))
1144 (when (or (not pattern)
1145 (string-match pattern this))
1146 (filesets-message 5 "Filesets: matched file %S with pattern %S"
1147 this pattern)
1148 (setq files (cons (if full-flag
1149 (concat (file-name-as-directory dir) this)
1150 this)
1151 files))))))
1152 (cond
1153 ((equal what ':dirs)
1154 (filesets-conditional-sort dirs))
1155 ((equal what ':files)
1156 (filesets-conditional-sort files))
1158 (append (filesets-conditional-sort files)
1159 (filesets-conditional-sort dirs))))))
1160 (filesets-be-docile-flag
1161 (filesets-message 1 "Filesets: %S doesn't exist" dir)
1162 nil)
1164 (filesets-error 'error "Filesets: " dir " does not exist"))))
1166 (defun filesets-quote (txt)
1167 "Return TXT in quotes."
1168 (concat "\"" txt "\""))
1170 (defun filesets-get-selection ()
1171 "Get the text between mark and point -- i.e. the selection or region."
1172 (let ((m (mark))
1173 (p (point)))
1174 (if m
1175 (buffer-substring (min m p) (max m p))
1176 (filesets-error 'error "No selection."))))
1178 (defun filesets-get-quoted-selection ()
1179 "Return the currently selected text in quotes."
1180 (filesets-quote (filesets-get-selection)))
1182 (defun filesets-get-shortcut (n)
1183 "Create menu shortcuts based on number N."
1184 (let ((n (mod (- n 1) 51)))
1185 (cond
1186 ((not filesets-menu-shortcuts-flag)
1188 ((<= n 9)
1189 (concat (number-to-string n) " "))
1190 ((<= n 35)
1191 (format "%c " (+ 87 n)))
1192 ((<= n 51)
1193 (format "%c " (+ -3 n))))))
1195 (defun filesets-files-equalp (a b)
1196 "Compare two filenames A and B after expansion."
1197 (equal (expand-file-name a) (expand-file-name b)))
1199 (defun filesets-files-in-same-directory-p (a b)
1200 "Compare two filenames A and B after expansion."
1201 (let ((ad (file-name-directory (expand-file-name a)))
1202 (bd (file-name-directory (expand-file-name b))))
1203 (equal ad bd)))
1205 (defun filesets-convert-path-list (string)
1206 "Return a path-list given as STRING as list."
1207 (if string
1208 (mapcar (lambda (x) (file-name-as-directory x))
1209 (split-string string path-separator))
1210 nil))
1212 (defun filesets-which-file (master filename &optional path-list)
1213 "Search for a FILENAME relative to a MASTER file in PATH-LIST."
1214 (let ((f (concat (file-name-directory master)
1215 filename)))
1216 (if (file-exists-p f)
1218 (filesets-some
1219 (lambda (dir)
1220 (let ((dir (file-name-as-directory dir))
1221 (files (if (file-exists-p dir)
1222 (filesets-directory-files dir nil ':files)
1223 nil)))
1224 (filesets-some (lambda (file)
1225 (if (equal filename (file-name-nondirectory file))
1226 (concat dir file)
1227 nil))
1228 files)))
1229 path-list))))
1232 (defun filesets-eviewer-get-props (entry)
1233 "Get ENTRY's (representing an external viewer) properties."
1234 (nth 2 entry))
1236 (defun filesets-eviewer-constraint-p (entry)
1237 (let* ((props (filesets-eviewer-get-props entry))
1238 (constraint (assoc ':constraintp props))
1239 (constraint-flag (assoc ':constraint-flag props)))
1240 (cond
1241 (constraint
1242 (funcall (cadr constraint)))
1243 (constraint-flag
1244 (eval (cadr constraint-flag)))
1246 t))))
1248 (defun filesets-get-external-viewer (file)
1249 "Find an external viewer for FILE."
1250 (let ((filename (file-name-nondirectory file)))
1251 (filesets-some
1252 (lambda (entry)
1253 (when (and (string-match (nth 0 entry) filename)
1254 (filesets-eviewer-constraint-p entry))
1255 entry))
1256 filesets-external-viewers)))
1258 (defun filesets-get-external-viewer-by-name (name)
1259 "Get the external viewer definition called NAME."
1260 (when name
1261 (filesets-some
1262 (lambda (entry)
1263 (when (and (string-equal (nth 1 entry) name)
1264 (filesets-eviewer-constraint-p entry))
1265 entry))
1266 filesets-external-viewers)))
1268 (defun filesets-filetype-property (filename event &optional entry)
1269 "Return non-nil if a file of a specific type has special flags/tags.
1271 Events (corresponding tag):
1273 on-open-all (:ignore-on-open-all) ... Exclude files of this when opening
1274 a fileset
1276 on-grep (:ignore-on-read-text) ... Exclude files of this when running
1277 the \"Grep <<selection>>\" command
1279 on-capture-output (:capture-output) ... Capture output of an external viewer
1281 on-ls ... not used
1283 on-cmd ... not used
1285 on-close-all ... not used"
1286 (let ((def (filesets-eviewer-get-props
1287 (or entry
1288 (filesets-get-external-viewer filename)))))
1289 (filesets-alist-get def
1290 (case event
1291 ((on-open-all) ':ignore-on-open-all)
1292 ((on-grep) ':ignore-on-read-text)
1293 ((on-cmd) nil)
1294 ((on-close-all) nil))
1295 nil t)))
1297 (defun filesets-filetype-get-prop (property filename &optional entry)
1298 "Return PROPERTY for filename -- use ENTRY if provided."
1299 (let ((def (filesets-eviewer-get-props
1300 (or entry
1301 (filesets-get-external-viewer filename)))))
1302 (when def
1303 (filesets-alist-get def property nil t))))
1305 (defun filesets-reset-filename-on-change ()
1306 "Reset a buffer's filename if the buffer is being modified."
1307 (when filesets-output-buffer-flag
1308 (set-visited-file-name nil t)))
1310 (defun filesets-spawn-external-viewer (file &optional ev-entry)
1311 "Start an external viewer for FILE.
1312 Use the viewer defined in EV-ENTRY (a valid element of
1313 `filesets-external-viewers') if provided."
1314 (let* ((file (expand-file-name file))
1315 (entry (or ev-entry
1316 (filesets-get-external-viewer file))))
1317 (if entry
1318 (let* ((vwr (cadr entry))
1319 (co-flag (filesets-filetype-get-prop ':capture-output file entry))
1320 (oh (filesets-filetype-get-prop ':open-hook file entry))
1321 (args (let ((fmt (filesets-filetype-get-prop ':args file entry)))
1322 (if fmt
1323 (let ((rv ""))
1324 (dolist (this fmt rv)
1325 (setq rv (concat rv
1326 (cond
1327 ((stringp this)
1328 (format this file))
1329 ((and (symbolp this)
1330 (fboundp this))
1331 (format "%S" (funcall this)))
1333 (format "%S" this)))))))
1334 (format "%S" file))))
1335 (output
1336 (cond
1337 ((and (functionp vwr) co-flag)
1338 (funcall vwr file))
1339 ((functionp vwr)
1340 (funcall vwr file)
1341 nil)
1342 (co-flag
1343 (shell-command-to-string (format "%s %s" vwr args)))
1345 (shell-command (format "%s %s&" vwr args))
1346 nil))))
1347 (if co-flag
1348 (progn
1349 (switch-to-buffer (format "Filesets: %s %s" vwr file))
1350 (insert output)
1351 (make-local-variable 'filesets-output-buffer-flag)
1352 (setq filesets-output-buffer-flag t)
1353 (set-visited-file-name file t)
1354 (when oh
1355 (run-hooks 'oh))
1356 (set-buffer-modified-p nil)
1357 (setq buffer-read-only t)
1358 (goto-char (point-min)))
1359 (when oh
1360 (run-hooks 'oh))))
1361 (filesets-error 'error
1362 "Filesets: general error when spawning external viewer"))))
1364 (defun filesets-find-file (file)
1365 "Call `find-file' after a possible delay (see `filesets-find-file-delay').
1366 If `filesets-be-docile-flag' is true, a file, which isn't readable, will
1367 not be opened."
1368 ; (sleep-for filesets-find-file-delay)
1369 (when (or (file-readable-p file)
1370 (not filesets-be-docile-flag))
1371 (sit-for filesets-find-file-delay)
1372 (find-file file)))
1374 (defun filesets-find-or-display-file (&optional file viewer)
1375 "Visit FILE using an external VIEWER or open it in an Emacs buffer."
1376 (interactive)
1377 (let* ((file (or file
1378 (read-file-name "Find file: " nil nil viewer)))
1379 (external-viewer-def (or
1380 (filesets-get-external-viewer-by-name viewer)
1381 (filesets-get-external-viewer file))))
1382 (filesets-message 3 "Filesets: view %S using %s" file external-viewer-def)
1383 (if external-viewer-def
1384 (filesets-spawn-external-viewer file external-viewer-def)
1385 (filesets-find-file file))))
1387 (defun filesets-find-file-using ()
1388 "Select a viewer and call `filesets-find-or-display-file'."
1389 (interactive)
1390 (let* ((lst (mapcar (lambda (this)
1391 (let ((a (cadr this)))
1392 (list (format "%s" a) a)))
1393 filesets-external-viewers))
1394 (viewer (completing-read "Using viewer: " lst nil t)))
1395 (when viewer
1396 (filesets-find-or-display-file nil (cadr (assoc viewer lst))))))
1398 (defun filesets-browser-name ()
1399 "Get the directory browser's name as defined in `filesets-browse-dir-function'."
1400 (cond
1401 ((listp filesets-browse-dir-function)
1402 (car filesets-browse-dir-function))
1404 filesets-browse-dir-function)))
1406 (defun filesets-browse-dir (dir)
1407 "Browse DIR using `filesets-browse-dir-function'."
1408 (if (functionp filesets-browse-dir-function)
1409 (funcall filesets-browse-dir-function dir)
1410 (let ((name (car filesets-browse-dir-function))
1411 (args (format (cadr filesets-browse-dir-function) (expand-file-name dir))))
1412 (with-temp-buffer
1413 (start-process (concat "Filesets:" name)
1414 "*Filesets external directory browser*"
1415 name args)))))
1417 (defun filesets-get-fileset-name (something)
1418 "Get SOMETHING's name (Don't ask)."
1419 (cond
1420 ((listp something)
1421 (car something))
1423 something)))
1425 (defun filesets-data-get-name (entry)
1426 "Access to `filesets-data'. Get the ENTRY's name."
1427 (car entry))
1429 (defun filesets-data-get-data (entry)
1430 "Access to `filesets-data'. Get the ENTRY's data section."
1431 (cdr entry))
1433 (defun filesets-alist-get (alist key &optional default carp)
1434 "Get KEY's value in the association list ALIST.
1435 Return DEFAULT if not found. Return (car VALUE) if CARP is non-nil."
1436 (let ((elt (assoc key alist)))
1437 (cond
1438 (elt
1439 (if carp
1440 (cadr elt)
1441 (cdr elt)))
1442 (default default)
1443 (t nil))))
1445 (defun filesets-data-get (entry key &optional default carp)
1446 "Extract the value for KEY in the data part of fileset ENTRY.
1447 Return DEFAULT if not found. Return (car VALUE) if CARP is non-nil."
1448 (filesets-alist-get (filesets-data-get-data entry) key default carp))
1450 (defun filesets-data-set (entry key value)
1451 "Set the VALUE for KEY in the data part of fileset ENTRY."
1452 (let* ((alist (filesets-data-get-data entry))
1453 (elt (assoc key alist)))
1454 (if elt
1455 (setcdr elt value)
1456 (setcdr entry (cons (cons key value) alist)))))
1458 (defun filesets-entry-mode (entry)
1459 "Return fileset ENTRY's mode: :files, :file, :tree, :pattern, or :ingroup.
1460 See `filesets-data'."
1461 (let ((data (filesets-data-get-data entry)))
1462 (filesets-some
1463 (lambda (x)
1464 (if (assoc x data)
1466 '(:files :tree :pattern :ingroup :file))))
1468 (defun filesets-entry-get-open-fn (fileset-name &optional fileset-entry)
1469 "Get the open-function for FILESET-NAME.
1470 Use FILESET-ENTRY for finding the open function, if provided."
1471 (filesets-data-get (or fileset-entry
1472 (filesets-get-fileset-from-name fileset-name))
1473 ':open filesets-open-file-function t))
1475 (defun filesets-entry-get-save-fn (fileset-name &optional fileset-entry)
1476 "Get the save-function for FILESET-NAME.
1477 Use FILESET-ENTRY for finding the save function, if provided."
1478 (filesets-data-get (or fileset-entry
1479 (filesets-get-fileset-from-name fileset-name))
1480 ':save filesets-save-buffer-function t))
1482 (defun filesets-entry-get-files (entry)
1483 "Get the file list for fileset ENTRY."
1484 (filesets-data-get entry ':files))
1486 (defun filesets-entry-set-files (entry data &optional anyways)
1487 "Set the file list for fileset ENTRY."
1488 (let ((files (filesets-entry-get-files entry)))
1489 (if (or anyways files)
1490 (filesets-data-set entry ':files data))))
1492 (defun filesets-entry-get-verbosity (entry)
1493 "Get verbosity level for fileset ENTRY."
1494 (filesets-data-get entry ':verbosity 1 t))
1496 (defun filesets-entry-get-file (entry)
1497 "Get the single file for fileset ENTRY."
1498 (filesets-data-get entry ':file nil t))
1500 (defun filesets-entry-get-pattern (entry)
1501 "Get the base directory + file pattern for fileset ENTRY."
1502 ; (filesets-data-get entry ':pattern nil t))
1503 (filesets-data-get entry ':pattern))
1505 (defun filesets-entry-get-pattern--pattern (list)
1506 "Get the file pattern for LIST."
1507 (if (= (length list) 1) ;; for compatibility with filesets < v1.5.5
1508 (file-name-nondirectory (car list))
1509 (cadr list)))
1511 (defun filesets-entry-get-pattern--dir (list)
1512 "Get a file pattern's base directory for LIST."
1513 (if (= (length list) 1) ;; for compatibility with filesets < v1.5.5
1514 (file-name-directory (car list))
1515 (car list)))
1517 (defun filesets-entry-get-tree (entry)
1518 "Get the tree pattern for fileset ENTRY."
1519 (filesets-data-get entry ':tree))
1521 (defun filesets-entry-get-dormant-flag (entry)
1522 "Get dormant flag for fileset ENTRY."
1523 (let ((fn (filesets-data-get entry ':dormant-p nil t)))
1524 (if fn
1525 (funcall fn)
1526 (filesets-data-get entry ':dormant-flag nil t))))
1528 (defun filesets-entry-get-filter-dirs-flag (entry)
1529 "Get filter-dirs-flag for fileset ENTRY."
1530 (filesets-data-get entry ':filter-dirs-flag nil t))
1532 (defun filesets-entry-get-tree-max-level (entry)
1533 "Get maximal tree scanning depth for fileset ENTRY."
1534 (filesets-data-get entry ':tree-max-level nil t))
1536 (defun filesets-entry-get-master (entry)
1537 "Get the base file for fileset ENTRY."
1538 (filesets-data-get entry ':ingroup nil t))
1540 (defun filesets-file-open (open-function file-name &optional fileset-name)
1541 "Open FILE-NAME using OPEN-FUNCTION.
1542 If OPEN-FUNCTION is nil, its value will be deduced from FILESET-NAME."
1543 (let ((open-function (or open-function
1544 (filesets-entry-get-open-fn fileset-name))))
1545 (if (file-readable-p file-name)
1546 (funcall open-function file-name)
1547 (message "Filesets: Couldn't open `%s'" file-name))))
1549 (defun filesets-file-close (save-function buffer)
1550 "Close BUFFER.
1551 First, save the buffer's contents using SAVE-FUNCTION. Then, kill buffer
1552 if `buffer-modified-p' returns nil.
1554 SAVE-FUNCTION takes no argument, but works on the current buffer."
1555 (save-excursion
1556 (set-buffer buffer)
1557 (if (buffer-modified-p)
1558 (funcall save-function))
1559 (if (not (buffer-modified-p))
1560 (kill-buffer buffer))))
1562 (defun filesets-get-fileset-from-name (name &optional mode)
1563 "Get fileset definition for NAME."
1564 (case mode
1565 ((:ingroup :tree)
1566 name)
1568 (assoc name filesets-data))))
1571 ;;; commands
1572 (defun filesets-cmd-get-def (cmd-name)
1573 "Get `filesets-commands' entry for CMD-NAME."
1574 (assoc cmd-name filesets-commands))
1576 (defun filesets-cmd-get-args (cmd-name)
1577 (let ((args (let ((def (filesets-cmd-get-def cmd-name)))
1578 (nth 2 def)))
1579 (rv nil))
1580 (dolist (this args rv)
1581 (cond
1582 ((and (symbolp this) (fboundp this))
1583 (let ((x (funcall this)))
1584 (setq rv (append rv (if (listp x) x (list x))))))
1586 (setq rv (append rv (list this))))))))
1588 (defun filesets-cmd-get-fn (cmd-name)
1589 (let ((def (filesets-cmd-get-def cmd-name)))
1590 (nth 1 def)))
1592 (defun filesets-cmd-show-result (cmd output)
1593 "Show OUTPUT of CMD (a shell command)."
1594 (pop-to-buffer "*Filesets: Shell Command Output*")
1595 (with-no-warnings
1596 (end-of-buffer))
1597 (insert "*** ")
1598 (insert cmd)
1599 (newline)
1600 (insert output)
1601 (newline))
1603 (defun filesets-run-cmd--repl-fn (arg &optional format-fn)
1604 "Helper function for `filesets-run-cmd'. Apply FORMAT-FN to arg.
1605 Replace <file-name> or <<file-name>> with filename."
1606 (funcall format-fn (cond
1607 ((equal arg "<file-name>")
1608 (buffer-file-name))
1609 ((equal arg "<<file-name>>")
1610 (shell-quote-argument (buffer-file-name)))
1612 arg))))
1614 (defun filesets-run-cmd (&optional cmd-name fileset mode)
1615 "Run CMD-NAME (see `filesets-commands') on FILESET."
1616 (interactive)
1617 (let* ((cmd-name (or cmd-name
1618 (completing-read "Select command: " filesets-commands
1619 nil t)))
1620 (name (or fileset
1621 (completing-read "Select fileset: " filesets-data nil t))))
1622 (when (and cmd-name name)
1623 (let* ((event (if (equal cmd-name "Grep <<selection>>")
1624 'on-grep
1625 'on-cmd))
1626 (files (if (and fileset
1627 (or (equal mode ':ingroup)
1628 (equal mode ':tree)))
1629 (filesets-get-filelist fileset mode event)
1630 (filesets-get-filelist
1631 (filesets-get-fileset-from-name name)
1632 mode event))))
1633 (when files
1634 (let ((fn (filesets-cmd-get-fn cmd-name))
1635 (args (filesets-cmd-get-args cmd-name)))
1636 (if (memq fn '(multi-isearch-files multi-isearch-files-regexp))
1637 (apply fn args)
1638 (dolist (this files nil)
1639 (save-excursion
1640 (save-restriction
1641 (let ((buffer (filesets-find-file this)))
1642 (when buffer
1643 (goto-char (point-min))
1644 (let ()
1645 (cond
1646 ((stringp fn)
1647 (let* ((args
1648 (let ((txt ""))
1649 (dolist (this args txt)
1650 (setq txt
1651 (concat txt
1652 (filesets-run-cmd--repl-fn
1653 this
1654 (lambda (this)
1655 (if (equal txt "") "" " ")
1656 (format "%s" this))))))))
1657 (cmd (concat fn " " args)))
1658 (filesets-cmd-show-result
1659 cmd (shell-command-to-string cmd))))
1660 ((symbolp fn)
1661 (let ((args
1662 (let ((argl nil))
1663 (dolist (this args argl)
1664 (setq argl
1665 (append argl
1666 (filesets-run-cmd--repl-fn
1667 this
1668 'list)))))))
1669 (apply fn args)))))))))))))))))
1671 (defun filesets-get-cmd-menu ()
1672 "Create filesets command menu."
1673 `("+ Commands"
1674 . ,(mapcar (lambda (this)
1675 (let ((name (car this)))
1676 `[,name (filesets-run-cmd ,name)]))
1677 filesets-commands)))
1680 ;;; sample commands
1681 (defun filesets-cmd-query-replace-getargs ()
1682 "Get arguments for `query-replace' and `query-replace-regexp'."
1683 (let ((common (query-replace-read-args "Filesets query replace" nil t)))
1684 (list (nth 0 common) (nth 1 common) t nil (nth 2 common) nil
1685 multi-query-replace-map)))
1687 (defun filesets-cmd-query-replace-regexp-getargs ()
1688 "Get arguments for `query-replace' and `query-replace-regexp'."
1689 (let ((common (query-replace-read-args "Filesets query replace" t t)))
1690 (list (nth 0 common) (nth 1 common) t t (nth 2 common) nil
1691 multi-query-replace-map)))
1693 (defun filesets-cmd-isearch-getargs ()
1694 "Get arguments for `multi-isearch-files' and `multi-isearch-files-regexp'."
1695 (and (boundp 'files) (list files)))
1697 (defun filesets-cmd-shell-command-getargs ()
1698 "Get arguments for `filesets-cmd-shell-command'."
1699 (let* ((arg (read-string "Shell command (%s = file): "
1700 "%s"
1701 'shell-command-history)))
1702 arg))
1704 (defun filesets-cmd-shell-command (txt)
1705 "Wrapper function for `shell-command'."
1706 (let ((ok (if (buffer-modified-p)
1707 (let ((ok (y-or-n-p "Save buffer? ")))
1708 (when ok
1709 (save-buffer))
1711 t)))
1712 (when ok
1713 (let ((cmd (format txt (shell-quote-argument (buffer-file-name)))))
1714 (message "Filesets: %s" cmd)
1715 (filesets-cmd-show-result cmd
1716 (shell-command-to-string cmd))))))
1719 ;;; body
1720 (defun filesets-get-filelist (entry &optional mode event)
1721 "Get all files for fileset ENTRY.
1722 Assume MODE (see `filesets-entry-mode'), if provided."
1723 (let* ((mode (or mode
1724 (filesets-entry-mode entry)))
1725 (fl (case mode
1726 ((:files)
1727 (filesets-entry-get-files entry))
1728 ((:file)
1729 (list (filesets-entry-get-file entry)))
1730 ((:ingroup)
1731 (let ((entry (expand-file-name
1732 (if (stringp entry)
1733 entry
1734 (filesets-entry-get-master entry)))))
1735 (cons entry (filesets-ingroup-cache-get entry))))
1736 ((:tree)
1737 (let ((dir (nth 0 entry))
1738 (patt (nth 1 entry)))
1739 (filesets-directory-files dir patt ':files t)))
1740 ((:pattern)
1741 (let ((dirpatt (filesets-entry-get-pattern entry)))
1742 (if dirpatt
1743 (let ((dir (filesets-entry-get-pattern--dir dirpatt))
1744 (patt (filesets-entry-get-pattern--pattern dirpatt)))
1745 ;;(filesets-message 3 "Filesets: scanning %s" dirpatt)
1746 (filesets-directory-files dir patt ':files t))
1747 ;; (message "Filesets: malformed entry: %s" entry)))))))
1748 (filesets-error 'error "Filesets: malformed entry: "
1749 entry)))))))
1750 (filesets-filter-list fl
1751 (lambda (file)
1752 (not (filesets-filetype-property file event))))))
1754 (defun filesets-open (&optional mode name lookup-name)
1755 "Open the fileset called NAME.
1756 Use LOOKUP-NAME for searching additional data if provided."
1757 (interactive)
1758 (let* ((name (or name
1759 (completing-read "Open fileset: " filesets-data nil t)))
1760 (fileset (filesets-get-fileset-from-name name mode))
1761 (lookup-fs (if lookup-name
1762 (filesets-get-fileset-from-name lookup-name)
1763 fileset))
1764 (mode (or mode (filesets-entry-mode lookup-fs))))
1765 (if fileset
1766 (let* ((files (filesets-get-filelist fileset mode 'on-open-all))
1767 (n (length files))
1768 (open-function (filesets-entry-get-open-fn nil lookup-fs)))
1769 (if (or (<= n filesets-query-user-limit)
1770 (y-or-n-p (format "Filesets: Open all %d files in %s? "
1771 n name)))
1772 (dolist (this files nil)
1773 (filesets-file-open open-function this))
1774 (message "Filesets: cancelled")))
1775 (filesets-error 'error "Filesets: Unknown fileset: " name))))
1777 (defun filesets-close (&optional mode name lookup-name)
1778 "Close all buffers belonging to the fileset called NAME.
1779 Use LOOKUP-NAME for deducing the save-function, if provided."
1780 (interactive)
1781 (let* ((name (or name
1782 (completing-read "Close fileset: " filesets-data nil t)))
1783 (fileset (filesets-get-fileset-from-name name mode))
1784 (lookup-fs (if lookup-name
1785 (filesets-get-fileset-from-name lookup-name)
1786 fileset))
1787 (mode (or mode (filesets-entry-mode lookup-fs))))
1788 (if fileset
1789 (let ((files (filesets-get-filelist fileset mode 'on-close-all))
1790 (save-function (filesets-entry-get-save-fn nil lookup-fs)))
1791 (dolist (file-name files nil)
1792 (let* ((buffer (get-file-buffer file-name)))
1793 (if buffer
1794 (filesets-file-close save-function buffer)))))
1795 ; (message "Filesets: Unknown fileset: `%s'" name))))
1796 (filesets-error 'error "Filesets: Unknown fileset: " name))))
1798 (defun filesets-add-buffer (&optional name buffer)
1799 "Add BUFFER (or current buffer) to the fileset called NAME.
1800 User will be queried, if no fileset name is provided."
1801 (interactive)
1802 (let* ((buffer (or buffer
1803 (current-buffer)))
1804 (name (or name
1805 (completing-read
1806 (format "Add '%s' to fileset: " buffer)
1807 filesets-data nil)))
1808 (entry (or (assoc name filesets-data)
1809 (when (y-or-n-p
1810 (format "Fileset %s does not exist. Create it? "
1811 name))
1812 (progn
1813 (add-to-list 'filesets-data (list name '(:files)))
1814 (message
1815 "Fileset %s created. Call `M-x filesets-save-config' to save."
1816 name)
1817 (car filesets-data))))))
1818 (if entry
1819 (let* ((files (filesets-entry-get-files entry))
1820 (this (buffer-file-name buffer))
1821 (inlist (filesets-member this files
1822 :test 'filesets-files-equalp)))
1823 (cond
1824 (inlist
1825 (message "Filesets: '%s' is already in '%s'" this name))
1826 ((and (equal (filesets-entry-mode entry) ':files)
1827 this)
1828 (filesets-entry-set-files entry (cons this files) t)
1829 (filesets-set-config name 'filesets-data filesets-data))
1831 (message "Filesets: Can't add '%s' to fileset '%s'" this name)))))))
1833 (defun filesets-remove-buffer (&optional name buffer)
1834 "Remove BUFFER (or current buffer) to fileset NAME.
1835 User will be queried, if no fileset name is provided."
1836 (interactive)
1837 (let* ((buffer (or buffer
1838 (current-buffer)))
1839 (name (or name
1840 (completing-read
1841 (format "Remove '%s' from fileset: " buffer)
1842 filesets-data nil t)))
1843 (entry (assoc name filesets-data)))
1844 (if entry
1845 (let* ((files (filesets-entry-get-files entry))
1846 (this (buffer-file-name buffer))
1847 (inlist (filesets-member this files
1848 :test 'filesets-files-equalp)))
1849 ;;(message "%s %s %s" files this inlist)
1850 (if (and files this inlist)
1851 (let ((new (list (cons ':files (delete (car inlist) files)))))
1852 (setcdr entry new)
1853 (filesets-set-config name 'filesets-data filesets-data))
1854 (message "Filesets: Can't remove '%s' from fileset '%s'"
1855 this
1856 name))))))
1858 (defun filesets-convert-patterns (name)
1859 "Change fileset NAME's mode from :pattern to :files."
1860 (interactive)
1861 (let ((entry (assoc name filesets-data)))
1862 (if entry
1863 (let ((pattern (filesets-entry-get-pattern entry))
1864 (patfiles (filesets-get-filelist entry ':pattern)))
1865 (if pattern
1866 (progn
1867 (filesets-entry-set-files entry patfiles t)
1868 (filesets-set-config name 'filesets-data filesets-data)))))))
1870 (defun filesets-edit ()
1871 "Customize `filesets-data'."
1872 (interactive)
1873 (customize-variable 'filesets-data))
1875 (defun filesets-customize ()
1876 "Customize the filesets group."
1877 (interactive)
1878 (customize-group 'filesets))
1880 (defun filesets-info ()
1881 "Display filesets's version information."
1882 (interactive)
1883 (if (y-or-n-p (format "Filesets v%s: visit homepage? " filesets-version))
1884 (filesets-goto-homepage)))
1886 (defun filesets-goto-homepage ()
1887 "Show filesets's homepage."
1888 (interactive)
1889 (browse-url filesets-homepage))
1891 (defun filesets-remake-shortcut (count submenu)
1892 "Remake a submenu's shortcut when wrapping long menus."
1893 (let* ((name (concat (filesets-get-shortcut count)
1894 (substring (elt submenu 0) 2))))
1895 (if (listp submenu)
1896 (cons name (cdr submenu))
1897 (apply 'vector (list name (cdr (append submenu nil)))))))
1898 ; (vconcat `[,name] (subseq submenu 1)))))
1900 (defun filesets-wrap-submenu (submenu-body)
1901 "Split long submenus."
1902 (let ((bl (length submenu-body)))
1903 (if (or (= filesets-max-submenu-length 0)
1904 (<= bl filesets-max-submenu-length))
1905 submenu-body
1906 (let* ((result nil)
1907 (factor (ceiling (/ (float bl)
1908 filesets-max-submenu-length))))
1909 (do ((data submenu-body (cdr data))
1910 (n 1 (+ n 1))
1911 (count 0 (+ count factor)))
1912 ((or (> count bl)
1913 (null data)))
1914 ; (let ((sl (subseq submenu-body count
1915 (let ((sl (filesets-sublist submenu-body count
1916 (let ((x (+ count factor)))
1917 (if (>= bl x)
1919 nil)))))
1920 (when sl
1921 (setq result
1922 (append
1923 result
1924 (if (= (length sl) 1)
1925 (if filesets-menu-shortcuts-flag
1926 (list (filesets-remake-shortcut n (car sl)))
1928 `((,(concat
1929 (filesets-get-shortcut n)
1930 (let ((rv ""))
1931 (do ((x sl (cdr x)))
1932 ((null x))
1933 (let ((y (concat (elt (car x) 0)
1934 (if (null (cdr x))
1936 ", "))))
1937 (setq rv
1938 (concat
1940 (if filesets-menu-shortcuts-flag
1941 (substring y 2)
1942 y)))))
1943 (if (> (length rv)
1944 filesets-max-entry-length)
1945 (concat
1946 (substring rv 0 filesets-max-entry-length)
1947 " ...")
1948 rv)))
1949 ,@sl))))))))
1950 result))))
1952 (defun filesets-get-menu-epilog (something &optional
1953 mode lookup-name rebuild-flag)
1954 "Get submenu epilog for SOMETHING (usually a fileset).
1955 If mode is :tree or :ingroup, SOMETHING is some weird construct and
1956 LOOKUP-NAME is used as lookup name for retrieving fileset specific settings."
1957 (case mode
1958 ((:tree)
1959 `("---"
1960 ["Close all files" (filesets-close ',mode ',something ',lookup-name)]
1961 ["Run Command" (filesets-run-cmd nil ',something ',mode)]
1962 [,(format "Browse with `%s'" (filesets-browser-name))
1963 (filesets-browse-dir ',(car something))]
1964 ,@(when rebuild-flag
1965 `(["Rebuild this submenu"
1966 (filesets-rebuild-this-submenu ',lookup-name)]))))
1967 ((:ingroup)
1968 `("---"
1969 ["Close all files" (filesets-close ',mode ',something ',lookup-name)]
1970 ["Run Command" (filesets-run-cmd nil ',something ',mode)]
1971 ,@(when rebuild-flag
1972 `(["Rebuild this submenu"
1973 (filesets-rebuild-this-submenu ',lookup-name)]))))
1974 ((:pattern)
1975 `("---"
1976 ["Close all files" (filesets-close ',mode ',something)]
1977 ["Run Command" (filesets-run-cmd nil ',something ',mode)]
1978 [,(format "Browse with `%s'" (filesets-browser-name))
1979 ,(list 'filesets-browse-dir
1980 (filesets-entry-get-pattern--dir
1981 (filesets-entry-get-pattern
1982 (filesets-get-fileset-from-name something ':pattern))))]
1983 ; [,(concat (if filesets-menu-shortcuts-flag
1984 ; (concat "Con" filesets-menu-shortcuts-marker "vert")
1985 ; "Convert")
1986 ; " :pattern to :files")
1987 ; ,(list (function filesets-convert-patterns) something)]
1988 ,@(when rebuild-flag
1989 `(["Rebuild this submenu"
1990 (filesets-rebuild-this-submenu ',lookup-name)]))))
1991 ((:files)
1992 `("---"
1993 [,(concat "Close all files") (filesets-close ',mode ',something)]
1994 ["Run Command" (filesets-run-cmd nil ',something ',mode)]
1995 ["Add current buffer"
1996 (filesets-add-buffer ',something (current-buffer))]
1997 ["Remove current buffer"
1998 (filesets-remove-buffer ',something (current-buffer))]
1999 ,@(when rebuild-flag
2000 `(["Rebuild this submenu"
2001 (filesets-rebuild-this-submenu ',lookup-name)]))))
2003 (filesets-error 'error "Filesets: malformed definition of " something))))
2005 (defun filesets-ingroup-get-data (master pos &optional fun)
2006 "Access to `filesets-ingroup-patterns'. Extract data section."
2007 (let ((masterfile (file-name-nondirectory master))
2008 (fn (or fun (lambda (a b)
2009 (and (stringp a)
2010 (stringp b)
2011 (string-match a b))))))
2012 (filesets-some (lambda (x)
2013 (if (funcall fn (car x) masterfile)
2014 (nth pos x)
2015 nil))
2016 filesets-ingroup-patterns)))
2018 (defun filesets-ingroup-get-pattern (master)
2019 "Access to `filesets-ingroup-patterns'. Extract patterns."
2020 (filesets-ingroup-get-data master 2))
2022 (defun filesets-ingroup-get-remdupl-p (master)
2023 "Access to `filesets-ingroup-patterns'. Extract remove-duplicates-flag."
2024 (filesets-ingroup-get-data master 1))
2026 (defun filesets-ingroup-collect-finder (patt case-sensitivep)
2027 "Helper function for `filesets-ingroup-collect'. Find pattern PATT."
2028 (let ((cfs case-fold-search)
2029 (rv (progn
2030 (setq case-fold-search (not case-sensitivep))
2031 (re-search-forward patt nil t))))
2032 (setq case-fold-search cfs)
2033 rv))
2035 (defun filesets-ingroup-cache-get (master)
2036 "Access to `filesets-ingroup-cache'."
2037 (lax-plist-get filesets-ingroup-cache master))
2039 (defun filesets-ingroup-cache-put (master file)
2040 "Access to `filesets-ingroup-cache'."
2041 (let* ((emaster (expand-file-name master))
2042 (this (if file
2043 (cons file (filesets-ingroup-cache-get emaster))
2044 nil)))
2045 (setq filesets-ingroup-cache
2046 (lax-plist-put filesets-ingroup-cache emaster this))))
2048 (defun filesets-ingroup-collect-files (fs &optional remdupl-flag master depth)
2049 "Helper function for `filesets-ingroup-collect'. Collect file names."
2050 (let* ((master (or master
2051 (filesets-entry-get-master fs)))
2052 (remdupl-flag (or remdupl-flag
2053 (filesets-ingroup-get-remdupl-p master))))
2054 (filesets-ingroup-cache-put master nil)
2055 (filesets-message 2 "Filesets: parsing %S" master)
2056 (let ((cmdpatts (filesets-ingroup-get-pattern master))
2057 (count 0)
2058 (rv nil))
2059 (if cmdpatts
2060 (dolist (this-def cmdpatts rv)
2061 (let* ((this-patt (filesets-alist-get this-def ':pattern nil t))
2062 (this-name (filesets-alist-get this-def ':name "" t))
2063 (this-pp (filesets-alist-get this-def ':preprocess nil t))
2064 (this-mn (filesets-alist-get this-def ':match-number 1 t))
2065 (this-sd (or depth
2066 (filesets-alist-get this-def ':scan-depth 0 t)))
2067 (this-csp (filesets-alist-get this-def ':case-sensitive nil t))
2068 (this-fn (filesets-alist-get
2069 this-def ':get-file-name 'filesets-which-file t))
2070 (this-stubp (filesets-alist-get this-def ':stubp nil t))
2071 (this-stub-flag (filesets-alist-get this-def ':stub-flag nil t))
2072 (flist nil)
2073 (lst nil))
2074 (cond
2075 ((not this-patt)
2076 (filesets-error 'error "Filesets: malformed :ingroup definition "
2077 this-def))
2078 ((< this-sd 0)
2079 nil)
2081 (with-temp-buffer
2082 (insert-file-contents master)
2083 (goto-char (point-min))
2084 (when this-pp
2085 (funcall this-pp))
2086 (while (filesets-ingroup-collect-finder this-patt this-csp)
2087 (let* ((txt (match-string this-mn))
2088 (f (funcall this-fn master txt)))
2089 (when (and f
2090 (not (member f flist))
2091 (or (not remdupl-flag)
2092 (not (filesets-member
2093 f filesets-ingroup-files
2094 :test 'filesets-files-equalp))))
2095 (let ((no-stub-flag
2096 (and (not this-stub-flag)
2097 (if this-stubp
2098 (not (funcall this-stubp master f))
2099 t))))
2100 (setq count (+ count 1))
2101 (setq flist (cons f flist))
2102 (setq filesets-ingroup-files
2103 (cons f filesets-ingroup-files))
2104 (when no-stub-flag
2105 (filesets-ingroup-cache-put master f))
2106 (setq lst (append lst (list f))))))))
2107 (when lst
2108 (setq rv
2109 (nconc rv
2110 (mapcar (lambda (this)
2111 `((,this ,this-name)
2112 ,@(filesets-ingroup-collect-files
2113 fs remdupl-flag this
2114 (- this-sd 1))))
2115 lst))))))))
2116 (filesets-message 2 "Filesets: no patterns defined for %S" master)))))
2118 (defun filesets-ingroup-collect-build-menu (fs flist &optional other-count)
2119 "Helper function for `filesets-ingroup-collect'. Build the menu.
2120 FS is a fileset's name. FLIST is a list returned by
2121 `filesets-ingroup-collect-files'."
2122 (if (null flist)
2124 (let ((count 0)
2125 (fsn fs)
2126 (rv nil))
2127 (dolist (this flist rv)
2128 (setq count (+ count 1))
2129 (let* ((def (if (listp this) (car this) (list this "")))
2130 (files (if (listp this) (cdr this) nil))
2131 (master (nth 0 def))
2132 (name (nth 1 def))
2133 (nm (concat (filesets-get-shortcut (if (or (not other-count) files)
2134 count other-count))
2135 (if (or (null name) (equal name ""))
2137 (format "%s: " name))
2138 (file-name-nondirectory master))))
2139 (setq rv
2140 (append rv
2141 (if files
2142 `((,nm
2143 [,(concat "Inclusion Group: "
2144 (file-name-nondirectory master))
2145 (filesets-open ':ingroup ',master ',fsn)]
2146 "---"
2147 [,master (filesets-file-open nil ',master ',fsn)]
2148 "---"
2149 ,@(let ((count 0))
2150 (mapcar
2151 (lambda (this)
2152 (setq count (+ count 1))
2153 (let ((ff (filesets-ingroup-collect-build-menu
2154 fs (list this) count)))
2155 (if (= (length ff) 1)
2156 (car ff)
2157 ff)))
2158 files))
2159 ,@(filesets-get-menu-epilog master ':ingroup fsn)))
2160 `([,nm (filesets-file-open nil ',master ',fsn)])))))))))
2162 (defun filesets-ingroup-collect (fs remdupl-flag master)
2163 "Collect names of included files and build submenu."
2164 (filesets-ingroup-cache-put master nil)
2165 (filesets-message 2 "Filesets: parsing %S" master)
2166 (filesets-ingroup-collect-build-menu
2168 (filesets-ingroup-collect-files fs remdupl-flag master)))
2170 (defun filesets-build-ingroup-submenu (lookup-name master)
2171 "Build a :ingroup submenu for file MASTER."
2172 (if (file-readable-p master)
2173 (let ((remdupl-flag (filesets-ingroup-get-remdupl-p master)))
2174 (setq filesets-ingroup-files (list master))
2175 (filesets-ingroup-collect lookup-name remdupl-flag master))
2176 (if filesets-be-docile-flag
2177 (progn
2178 (message "Filesets: can't parse %s" master)
2179 nil)
2180 (filesets-error 'error "Filesets: can't parse " master))))
2182 (defun filesets-build-dir-submenu-now (level depth entry lookup-name dir patt fd
2183 &optional rebuild-flag)
2184 "Helper function for `filesets-build-dir-submenu'."
2185 ;;(filesets-message 3 "Filesets: scanning %s" dir)
2186 (if (or (= depth 0)
2187 (< level depth))
2188 (let* ((dir (file-name-as-directory dir))
2189 (header `([,(concat "Tree: "
2190 (if (= level 0)
2192 (concat ".../"
2193 (file-name-as-directory
2194 (file-name-nondirectory
2195 (directory-file-name dir))))))
2196 ,(list (function filesets-open)
2197 ':tree
2198 `(quote (,dir ,patt))
2199 lookup-name)]
2200 "---"))
2201 (dirlist (filesets-directory-files dir patt nil nil fd))
2202 (subdirs (filesets-filter-dir-names dirlist))
2203 (count 0)
2204 (dirsmenu (mapcar
2205 (lambda (x)
2206 (setq count (+ count 1))
2207 (let* ((x (file-name-as-directory x))
2208 (xx (concat dir x))
2209 (dd (filesets-build-dir-submenu-now
2210 (+ level 1) depth entry
2211 lookup-name xx patt fd))
2212 (nm (concat (filesets-get-shortcut count)
2213 x)))
2214 (if dd
2215 `(,nm ,@dd)
2216 `[,nm ,(list 'filesets-browse-dir xx)])))
2217 subdirs))
2218 (files (filesets-filter-dir-names dirlist t))
2219 (filesmenu (mapcar (lambda (x)
2220 (setq count (+ count 1))
2221 `[,(concat (filesets-get-shortcut count)
2223 (filesets-file-open nil
2224 (quote ,(concat dir x))
2225 (quote ,lookup-name))])
2226 files)))
2227 (append header
2228 (filesets-wrap-submenu
2229 (append
2230 dirsmenu
2231 filesmenu))
2232 (filesets-get-menu-epilog `(,dir ,patt) ':tree
2233 lookup-name rebuild-flag)))
2234 nil))
2236 (defun filesets-build-dir-submenu (entry lookup-name dir patt)
2237 "Build a :tree submenu named LOOKUP-NAME with base directory DIR including
2238 all files matching PATT for filesets ENTRY."
2239 (let ((fd (filesets-entry-get-filter-dirs-flag entry))
2240 (depth (or (filesets-entry-get-tree-max-level entry)
2241 filesets-tree-max-level)))
2242 (filesets-build-dir-submenu-now 0 depth entry lookup-name dir patt fd t)))
2244 (defun filesets-build-submenu (count lookup-name entry)
2245 "Build submenu for the fileset ENTRY named LOOKUP-NAME.
2246 Construct a shortcut from COUNT."
2247 (let ((lookup-name (or lookup-name
2248 (filesets-data-get-name entry))))
2249 (message "Filesets: %s" lookup-name)
2250 (let ((mode (filesets-entry-mode entry))
2251 (filesets-verbosity (filesets-entry-get-verbosity entry))
2252 (this-lookup-name (concat (filesets-get-shortcut count)
2253 lookup-name)))
2254 (case mode
2255 ((:file)
2256 (let* ((file (filesets-entry-get-file entry)))
2257 `[,this-lookup-name
2258 (filesets-file-open nil ',file ',lookup-name)]))
2260 `(,this-lookup-name
2261 ,@(case mode
2262 ((:pattern)
2263 (let* ((files (filesets-get-filelist entry mode 'on-ls))
2264 (dirpatt (filesets-entry-get-pattern entry))
2265 (pattname (apply 'concat (cons "Pattern: " dirpatt)))
2266 (count 0))
2267 ;;(filesets-message 3 "Filesets: scanning %S" pattname)
2268 `([,pattname
2269 ,(list (function filesets-open) mode lookup-name)]
2270 "---"
2271 ,@(filesets-wrap-submenu
2272 (mapcar
2273 (lambda (x)
2274 (setq count (+ count 1))
2275 `[,(concat (filesets-get-shortcut count)
2276 (file-name-nondirectory x))
2277 (filesets-file-open nil ',x ',lookup-name)])
2278 files))
2279 ,@(filesets-get-menu-epilog lookup-name mode
2280 lookup-name t))))
2281 ((:ingroup)
2282 (let* ((master (filesets-entry-get-master entry)))
2283 ;;(filesets-message 3 "Filesets: parsing %S" master)
2284 `([,(concat "Inclusion Group: "
2285 (file-name-nondirectory master))
2286 (filesets-open ',mode ',master ',lookup-name)]
2287 "---"
2288 [,master (filesets-file-open nil ',master ',lookup-name)]
2289 "---"
2290 ,@(filesets-wrap-submenu
2291 (filesets-build-ingroup-submenu lookup-name master))
2292 ,@(filesets-get-menu-epilog master mode lookup-name t))))
2293 ((:tree)
2294 (let* ((dirpatt (filesets-entry-get-tree entry))
2295 (dir (car dirpatt))
2296 (patt (cadr dirpatt)))
2297 (filesets-build-dir-submenu entry lookup-name dir patt)))
2298 ((:files)
2299 (let ((files (filesets-get-filelist entry mode 'on-open-all))
2300 (count 0))
2301 `([,(concat "Files: " lookup-name)
2302 (filesets-open ',mode ',lookup-name)]
2303 "---"
2304 ,@(filesets-wrap-submenu
2305 (mapcar
2306 (lambda (x)
2307 (setq count (+ count 1))
2308 `[,(concat (filesets-get-shortcut count)
2309 (file-name-nondirectory x))
2310 (filesets-file-open nil ',x ',lookup-name)])
2311 (filesets-conditional-sort
2312 files
2313 (function file-name-nondirectory))))
2314 ,@(filesets-get-menu-epilog lookup-name mode
2315 lookup-name t)))))))))))
2317 (defun filesets-remove-from-ubl (&optional buffer)
2318 "BUFFER or current buffer require update of the filesets menu."
2319 (let ((b (or buffer
2320 (current-buffer))))
2321 (if (member b filesets-updated-buffers)
2322 (setq filesets-updated-buffers
2323 (delete b filesets-updated-buffers)))))
2325 (defun filesets-build-menu-now (from-scratch-flag)
2326 "Update the filesets menu.
2327 Build all new if FROM-SCRATCH-FLAG is non-nil. (To really build from the
2328 bottom up, set `filesets-submenus' to nil, first.)"
2329 (when (or from-scratch-flag
2330 filesets-has-changed-flag
2331 (not filesets-menu-cache))
2332 (setq filesets-menu-cache nil)
2333 (setq filesets-has-changed-flag nil)
2334 (setq filesets-updated-buffers nil)
2335 (setq filesets-update-cache-file-flag t)
2336 (do ((data (filesets-conditional-sort filesets-data (function car))
2337 (cdr data))
2338 (count 1 (+ count 1)))
2339 ((null data))
2340 (let* ((this (car data))
2341 (name (filesets-data-get-name this))
2342 (cached (lax-plist-get filesets-submenus name))
2343 (submenu (or cached
2344 (filesets-build-submenu count name this))))
2345 (unless cached
2346 (setq filesets-submenus
2347 (lax-plist-put filesets-submenus name submenu)))
2348 (unless (filesets-entry-get-dormant-flag this)
2349 (setq filesets-menu-cache
2350 (append filesets-menu-cache (list submenu))))))
2351 (when filesets-cache-save-often-flag
2352 (filesets-menu-cache-file-save-maybe)))
2353 (let ((cb (current-buffer)))
2354 (when (not (member cb filesets-updated-buffers))
2355 (add-submenu
2356 filesets-menu-path
2357 `(,filesets-menu-name
2358 ("# Filesets"
2359 ["Edit Filesets" filesets-edit]
2360 ["Save Filesets" filesets-save-config]
2361 ["Save Menu Cache" filesets-menu-cache-file-save]
2362 ["Rebuild Menu" filesets-build-menu]
2363 ["Customize" filesets-customize]
2364 ["About" filesets-info])
2365 ,(filesets-get-cmd-menu)
2366 "---"
2367 ,@filesets-menu-cache)
2368 filesets-menu-before
2369 filesets-menu-in-menu)
2370 (setq filesets-updated-buffers
2371 (cons cb filesets-updated-buffers))
2372 ;; This wipes out other messages in the echo area.
2373 ;; (message nil)
2374 ;;(message "Filesets updated: %s" cb)
2377 (defun filesets-build-menu-maybe ()
2378 "Update the filesets menu."
2379 (interactive)
2380 (filesets-build-menu-now nil))
2382 (defun filesets-build-menu ()
2383 "Force rebuild of the filesets menu."
2384 (interactive)
2385 ;(setq filesets-submenus nil)
2386 (filesets-reset-fileset)
2387 (filesets-build-menu-now t)
2388 (filesets-menu-cache-file-save-maybe))
2390 (defun filesets-rebuild-this-submenu (fileset)
2391 "Force rebuild of FILESET submenu."
2392 (filesets-reset-fileset fileset)
2393 (filesets-build-menu-now t))
2395 (defun filesets-menu-cache-file-save-maybe (&optional simply-do-it)
2396 "Write filesets' cache file.
2397 If SIMPLY-DO-IT is non-nil, the cache file will be written no matter if
2398 fileset thinks this is necessary or not."
2399 (when (and (not (equal filesets-menu-cache-file ""))
2400 (or simply-do-it
2401 filesets-update-cache-file-flag))
2402 (when (file-exists-p filesets-menu-cache-file)
2403 (delete-file filesets-menu-cache-file))
2404 ;;(message "Filesets: saving menu cache")
2405 (with-temp-buffer
2406 (dolist (this filesets-menu-cache-contents)
2407 (if (get this 'custom-type)
2408 (progn
2409 (insert (format "(setq-default %s '%S)" this (eval this)))
2410 (when filesets-menu-ensure-use-cached
2411 (newline)
2412 (insert (format "(setq %s (cons '%s %s))"
2413 'filesets-ignore-next-set-default
2414 this
2415 'filesets-ignore-next-set-default))))
2416 (insert (format "(setq %s '%S)" this (eval this))))
2417 (newline 2))
2418 (insert (format "(setq filesets-cache-version %S)" filesets-version))
2419 (newline 2)
2420 (when filesets-cache-hostname-flag
2421 (insert (format "(setq filesets-cache-hostname %S)" (system-name)))
2422 (newline 2))
2423 (run-hooks 'filesets-cache-fill-content-hooks)
2424 (write-file filesets-menu-cache-file))
2425 (setq filesets-has-changed-flag nil)
2426 (setq filesets-update-cache-file-flag nil)))
2428 (defun filesets-menu-cache-file-save ()
2429 "Save filesets' menu cache file."
2430 (interactive)
2431 (filesets-menu-cache-file-save-maybe t))
2433 (defun filesets-update-cleanup ()
2434 "Rebuild the menu and save the cache file after updating user data."
2435 (interactive)
2436 (message "Filesets v%s: updating menu & cache from version %s"
2437 filesets-version (or filesets-cache-version "???"))
2438 (filesets-build-menu)
2439 (filesets-menu-cache-file-save-maybe)
2440 (filesets-menu-cache-file-load))
2442 (defun filesets-update-pre010505 ()
2443 (let ((msg
2444 "Filesets: manual editing of user data required!
2446 Filesets has detected that you were using an older version before,
2447 which requires some manual updating. Type 'y' for editing the startup
2448 file now.
2450 The layout of `filesets-data' has changed. Please delete your cache file
2451 and edit your startup file as shown below:
2453 1. `filesets-data': Edit all :pattern filesets in your startup file and
2454 transform all entries as shown in this example:
2456 \(\"Test\" (:pattern \"~/dir/^pattern$\"))
2457 --> \(\"Test\" (:pattern \"~/dir/\" \"^pattern$\"))
2459 2. `filesets-data': Change all occurrences of \":document\" to \":ingroup\":
2461 \(\(\"Test\" \(:document \"~/dir/file\"))
2462 --> \(\(\"Test\" \(:ingroup \"~/dir/file\"))
2464 3. `filesets-subdocument-patterns': If you already modified the variable
2465 previously called `filesets-subdocument-patterns', change its name to
2466 `filesets-ingroup-patterns'.
2468 4. `filesets-menu-cache-contents': If you already modified this
2469 variable, change the entry `filesets-subdocument--cache' to
2470 `filesets-ingroup-cache'.
2472 5. Type M-x filesets-update-cleanup and restart Emacs.
2474 We apologize for the inconvenience."))
2475 (let* ((cf (or custom-file user-init-file)))
2476 (switch-to-buffer-other-frame "*Filesets update*")
2477 (insert msg)
2478 (when (y-or-n-p (format "Edit startup (%s) file now? " cf))
2479 (find-file-other-window cf))
2480 (filesets-error 'error msg))))
2482 (defun filesets-update (cached-version)
2483 "Do some cleanup after updating filesets.el."
2484 (cond
2485 ((or (not cached-version)
2486 (string< cached-version "1.5.5")
2487 (boundp 'filesets-subdocument-patterns))
2488 (filesets-update-pre010505)))
2489 (filesets-update-cleanup))
2491 (defun filesets-menu-cache-file-load ()
2492 "Load filesets' menu cache file."
2493 (cond
2494 ((and (not (equal filesets-menu-cache-file ""))
2495 (file-readable-p filesets-menu-cache-file))
2496 (load-file filesets-menu-cache-file)
2497 (if (and (equal filesets-cache-version filesets-version)
2498 (if filesets-cache-hostname-flag
2499 (equal filesets-cache-hostname (system-name))
2501 (progn
2502 (setq filesets-update-cache-file-flag nil)
2504 (filesets-update filesets-cache-version)))
2506 (setq filesets-update-cache-file-flag t)
2507 nil)))
2509 (defun filesets-exit ()
2510 (filesets-menu-cache-file-save-maybe))
2512 ;;;###autoload
2513 (defun filesets-init ()
2514 "Filesets initialization.
2515 Set up hooks, load the cache file -- if existing -- and build the menu."
2516 (add-hook (if (featurep 'xemacs) 'activate-menubar-hook 'menu-bar-update-hook)
2517 (function filesets-build-menu-maybe))
2518 (add-hook 'kill-buffer-hook (function filesets-remove-from-ubl))
2519 (add-hook 'first-change-hook (function filesets-reset-filename-on-change))
2520 (add-hook 'kill-emacs-hook (function filesets-exit))
2521 (if (filesets-menu-cache-file-load)
2522 (progn
2523 (filesets-build-menu-maybe)
2524 ;;Well, normally when we use XEmacs <= 21.4, custom.el is loaded
2525 ;;after init.el. This more or less ignores the next
2526 ;;`filesets-data-set-default'
2527 (if filesets-menu-ensure-use-cached
2528 (setq filesets-menu-use-cached-flag t)))
2529 (filesets-build-menu)))
2532 (provide 'filesets)
2534 ;; Local Variables:
2535 ;; sentence-end-double-space:t
2536 ;; End:
2538 ;; arch-tag: 2c03f85f-c3df-4cec-b0a3-b46fd5592d70
2539 ;;; filesets.el ends here