1 ;;; desktop.el --- save partial status of Emacs when killed
3 ;; Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
5 ;; Author: Morten Welinder <terra@diku.dk>
7 ;; Keywords: customization
8 ;; Favourite-brand-of-beer: None, I hate beer.
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 2, or (at your option)
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; see the file COPYING. If not, write to
24 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
28 ;; Save the Desktop, i.e.,
29 ;; - some global variables
30 ;; - the list of buffers with associated files. For each buffer also
32 ;; - the default directory
34 ;; - the mark & mark-active
36 ;; - some local variables
38 ;; To use this, first put these three lines in the bottom of your .emacs
39 ;; file (the later the better):
42 ;; (desktop-load-default)
45 ;; Between the second and the third line you may wish to add something that
46 ;; updates the variables `desktop-globals-to-save' and/or
47 ;; `desktop-locals-to-save'. If for instance you want to save the local
48 ;; variable `foobar' for every buffer in which it is local, you could add
51 ;; (setq desktop-locals-to-save (cons 'foobar desktop-locals-to-save))
53 ;; To avoid saving excessive amounts of data you may also wish to add
54 ;; something like the following
56 ;; (add-hook 'kill-emacs-hook
58 ;; (desktop-truncate search-ring 3)
59 ;; (desktop-truncate regexp-search-ring 3)))
61 ;; which will make sure that no more than three search items are saved. You
62 ;; must place this line *after* the (load "desktop") line. See also the
63 ;; variable desktop-save-hook.
65 ;; Start Emacs in the root directory of your "project". The desktop saver
66 ;; is inactive by default. You activate it by M-x desktop-save RET. When
67 ;; you exit the next time the above data will be saved. This ensures that
68 ;; all the files you were editing will be reloaded the next time you start
69 ;; Emacs from the same directory and that points will be set where you
70 ;; left them. If you save a desktop file in your home directory it will
71 ;; act as a default desktop when you start Emacs from a directory that
72 ;; doesn't have its own. I never do this, but you may want to.
74 ;; By the way: don't use desktop.el to customize Emacs -- the file .emacs
75 ;; in your home directory is used for that. Saving global default values
76 ;; for buffers is an example of misuse.
78 ;; PLEASE NOTE: The kill ring can be saved as specified by the variable
79 ;; `desktop-globals-to-save' (by default it isn't). This may result in saving
80 ;; things you did not mean to keep. Use M-x desktop-clear RET.
82 ;; Thanks to hetrick@phys.uva.nl (Jim Hetrick) for useful ideas.
83 ;; avk@rtsg.mot.com (Andrew V. Klein) for a dired tip.
84 ;; chris@tecc.co.uk (Chris Boucher) for a mark tip.
85 ;; f89-kam@nada.kth.se (Klas Mellbourn) for a mh-e tip.
86 ;; kifer@sbkifer.cs.sunysb.edu (M. Kifer) for a bug hunt.
87 ;; treese@lcs.mit.edu (Win Treese) for ange-ftp tips.
88 ;; ---------------------------------------------------------------------------
91 ;; Save window configuration.
92 ;; Recognize more minor modes.
94 ;; Start-up with buffer-menu???
98 ;; Make the compilation more silent
100 ;; We use functions from these modules
101 ;; We can't (require 'mh-e) since that wants to load something.
102 (mapcar 'require
'(info dired reporter
)))
103 ;; ----------------------------------------------------------------------------
104 ;; USER OPTIONS -- settings you might want to play with.
105 ;; ----------------------------------------------------------------------------
106 (defconst desktop-basefilename
107 (if (or (eq system-type
'ms-dos
) (eq system-type
'windows-nt
))
108 "emacs.dsk" ; Ms-Dos does not support multiple dots in file name
110 "File for Emacs desktop, not including the directory name.")
112 (defvar desktop-missing-file-warning t
113 "*If non-nil then desktop warns when a file no longer exists.
114 Otherwise it simply ignores that file.")
116 (defvar desktop-globals-to-save
117 (list 'desktop-missing-file-warning
118 ;; Feature: saving kill-ring implies saving kill-ring-yank-pointer
125 ;; 'desktop-globals-to-save ; Itself!
127 "List of global variables to save when killing Emacs.")
129 (defvar desktop-locals-to-save
130 (list 'desktop-locals-to-save
; Itself! Think it over.
136 'change-log-default-name
139 "List of local variables to save for each buffer.
140 The variables are saved only when they really are local.")
141 (make-variable-buffer-local 'desktop-locals-to-save
)
143 ;; We skip .log files because they are normally temporary.
144 ;; (ftp) files because they require passwords and whatsnot.
145 ;; TAGS files to save time (tags-file-name is saved instead).
146 (defvar desktop-buffers-not-to-save
147 "\\(^nn\\.a[0-9]+\\|\\.log\\|(ftp)\\|^tags\\|^TAGS\\)$"
148 "Regexp identifying buffers that are to be excluded from saving.")
150 ;; Skip ange-ftp files
151 (defvar desktop-files-not-to-save
153 "Regexp identifying files whose buffers are to be excluded from saving.")
155 (defvar desktop-buffer-handlers
156 '(desktop-buffer-dired
161 "*List of functions to call in order to create a buffer.
162 The functions are called without explicit parameters but may access
163 the the major mode as `mam', the file name as `fn', the buffer name as
164 `bn', the default directory as `dd'. If some function returns non-nil
165 no further functions are called. If the function returns t then the
166 buffer is considered created.")
168 (defvar desktop-create-buffer-form
"(desktop-create-buffer 205"
169 "Opening of form for creation of new buffers.")
171 (defvar desktop-save-hook nil
172 "Hook run before saving the desktop to allow you to cut history lists and
174 ;; ----------------------------------------------------------------------------
175 (defvar desktop-dirname nil
176 "The directory in which the current desktop file resides.")
178 (defconst desktop-header
179 ";; --------------------------------------------------------------------------
180 ;; Desktop File for Emacs
181 ;; --------------------------------------------------------------------------
182 " "*Header to place in Desktop file.")
184 (defvar desktop-delay-hook nil
185 "Hooks run after all buffers are loaded; intended for internal use.")
186 ;; ----------------------------------------------------------------------------
187 (defun desktop-truncate (l n
)
188 "Truncate LIST to at most N elements destructively."
189 (let ((here (nthcdr (1- n
) l
)))
192 ;; ----------------------------------------------------------------------------
193 (defun desktop-clear () "Empty the Desktop."
196 kill-ring-yank-pointer nil
198 search-ring-yank-pointer nil
199 regexp-search-ring nil
200 regexp-search-ring-yank-pointer nil
)
201 (mapcar (function kill-buffer
) (buffer-list))
202 (delete-other-windows))
203 ;; ----------------------------------------------------------------------------
204 (add-hook 'kill-emacs-hook
'desktop-kill
)
206 (defun desktop-kill ()
209 (desktop-save desktop-dirname
)
211 (if (yes-or-no-p "Error while saving the desktop. Quit anyway? ")
213 (signal (car err
) (cdr err
)))))))
214 ;; ----------------------------------------------------------------------------
215 (defun desktop-internal-v2s (val)
216 "Convert VALUE to a pair (QUOTE . TXT); (eval (read TXT)) gives VALUE.
217 TXT is a string that when read and evaluated yields value.
218 QUOTE may be `may' (value may be quoted),
219 `must' (values must be quoted), or nil (value may not be quoted)."
221 ((or (numberp val
) (null val
) (eq t val
))
222 (cons 'may
(prin1-to-string val
)))
224 (let ((copy (copy-sequence val
)))
225 (set-text-properties 0 (length copy
) nil copy
)
226 ;; Get rid of text properties because we cannot read them
227 (cons 'may
(prin1-to-string copy
))))
229 (cons 'must
(prin1-to-string val
)))
234 (let ((res (desktop-internal-v2s el
)))
240 (cons nil
(concat "(vector "
241 (mapconcat (lambda (el)
242 (if (eq (car el
) 'must
)
243 (concat "'" (cdr el
))
248 (cons 'may
(concat "[" (mapconcat 'cdr pass1
" ") "]")))))
254 (let ((q.txt
(desktop-internal-v2s (car p
))))
255 (or anynil
(setq anynil
(null (car q.txt
))))
256 (setq newlist
(cons q.txt newlist
)))
259 (let ((last (desktop-internal-v2s p
))
262 (if (or anynil
(setq anynil
(null (car last
))))
265 (if (eq (car el
) 'must
) "'" "")
268 (if (eq (car last
) 'must
) "'" "")
272 (concat (cdr el
) " . " (cdr last
)))))))
273 (setq newlist
(nreverse newlist
))
277 (mapconcat (lambda (el)
278 (if (eq (car el
) 'must
)
279 (concat "'" (cdr el
))
285 (concat "(" (mapconcat 'cdr newlist
" ") ")")))))
287 (cons nil
(concat "(symbol-function '"
288 (substring (prin1-to-string val
) 7 -
1)
291 (let ((pos (prin1-to-string (marker-position val
)))
292 (buf (prin1-to-string (buffer-name (marker-buffer val
)))))
293 (cons nil
(concat "(let ((mk (make-marker)))"
294 " (add-hook 'desktop-delay-hook"
295 " (list 'lambda '() (list 'set-marker mk "
296 pos
" (get-buffer " buf
")))) mk)"))))
298 (cons 'may
"\"Unprintable entity\""))))
300 (defun desktop-value-to-string (val)
301 "Convert VALUE to a string that when read evaluates to the same value.
302 Not all types of values are supported."
303 (let* ((print-escape-newlines t
)
304 (float-output-format nil
)
305 (quote.txt
(desktop-internal-v2s val
))
306 (quote (car quote.txt
))
307 (txt (cdr quote.txt
)))
311 ;; ----------------------------------------------------------------------------
312 (defun desktop-outvar (var)
313 "Output a setq statement for VAR to the desktop file."
318 (desktop-value-to-string (symbol-value var
))
320 ;; ----------------------------------------------------------------------------
321 (defun desktop-save-buffer-p (filename bufname mode
&rest dummy
)
322 "Return t if the desktop should record a particular buffer for next startup.
323 FILENAME is the visited file name, BUFNAME is the buffer name, and
324 MODE is the major mode."
325 (let ((case-fold-search nil
))
327 (not (string-match desktop-buffers-not-to-save bufname
))
328 (not (string-match desktop-files-not-to-save filename
)))
329 (and (eq mode
'dired-mode
)
331 (set-buffer (get-buffer bufname
))
332 (not (string-match desktop-files-not-to-save
333 default-directory
))))
335 (memq mode
'(Info-mode rmail-mode
))))))
336 ;; ----------------------------------------------------------------------------
337 (defun desktop-save (dirname)
338 "Save the Desktop file. Parameter DIRNAME specifies where to save desktop."
339 (interactive "DDirectory to save desktop file in: ")
340 (run-hooks 'desktop-save-hook
)
342 (let ((filename (expand-file-name
343 (concat dirname desktop-basefilename
)))
346 (function (lambda (b)
352 (list ; list explaining minor modes
353 (not (null auto-fill-function
)))
355 (list (mark t
) mark-active
)
357 (cond ((eq major-mode
'Info-mode
)
358 (list Info-current-file
360 ((eq major-mode
'dired-mode
)
362 (expand-file-name dired-directory
)
367 dired-subdir-alist
))))))
368 (let ((locals desktop-locals-to-save
)
369 (loclist (buffer-local-variables))
372 (let ((here (assq (car locals
) loclist
)))
374 (setq ll
(cons here ll
))
375 (if (member (car locals
) loclist
)
376 (setq ll
(cons (car locals
) ll
)))))
377 (setq locals
(cdr locals
)))
381 (buf (get-buffer-create "*desktop*")))
385 (insert desktop-header
386 ";; Created " (current-time-string) "\n"
387 ";; Emacs version " emacs-version
"\n\n"
388 ";; Global section:\n")
389 (mapcar (function desktop-outvar
) desktop-globals-to-save
)
390 (if (memq 'kill-ring desktop-globals-to-save
)
391 (insert "(setq kill-ring-yank-pointer (nthcdr "
393 (- (length kill-ring
) (length kill-ring-yank-pointer
)))
396 (insert "\n;; Buffer section:\n")
398 (function (lambda (l)
399 (if (apply 'desktop-save-buffer-p l
)
401 (insert desktop-create-buffer-form
)
403 (function (lambda (e)
405 (desktop-value-to-string e
))))
409 (setq default-directory dirname
)
410 (if (file-exists-p filename
) (delete-file filename
))
411 (write-region (point-min) (point-max) filename nil
'nomessage
)))
412 (setq desktop-dirname dirname
))
413 ;; ----------------------------------------------------------------------------
414 (defun desktop-remove ()
415 "Delete the Desktop file and inactivate the desktop system."
418 (let ((filename (concat desktop-dirname desktop-basefilename
)))
419 (setq desktop-dirname nil
)
420 (if (file-exists-p filename
)
421 (delete-file filename
)))))
422 ;; ----------------------------------------------------------------------------
423 (defun desktop-read ()
424 "Read the Desktop file and the files it specifies."
427 (if (file-exists-p (concat "./" desktop-basefilename
))
428 (setq desktop-dirname
(expand-file-name "./"))
429 (if (file-exists-p (concat "~/" desktop-basefilename
))
430 (setq desktop-dirname
(expand-file-name "~/"))
431 (setq desktop-dirname nil
)))
434 (load (concat desktop-dirname desktop-basefilename
) t t t
)
435 (run-hooks 'desktop-delay-hook
)
436 (message "Desktop loaded."))
438 ;; ----------------------------------------------------------------------------
439 (defun desktop-load-default ()
440 "Load the `default' start-up library manually.
441 Also inhibit further loading of it. Call this from your `.emacs' file
442 to provide correct modes for autoloaded files."
443 (if (not inhibit-default-init
) ; safety check
446 (setq inhibit-default-init t
))))
447 ;; ----------------------------------------------------------------------------
448 ;; Note: the following functions use the dynamic variable binding in Lisp.
450 (defun desktop-buffer-info () "Load an info file."
451 (if (eq 'Info-mode mam
)
454 (Info-find-node (nth 0 misc
) (nth 1 misc
))
456 ;; ----------------------------------------------------------------------------
457 (defun desktop-buffer-rmail () "Load an RMAIL file."
458 (if (eq 'rmail-mode mam
)
459 (condition-case error
460 (progn (rmail-input fn
) t
)
462 (kill-buffer (current-buffer))
464 ;; ----------------------------------------------------------------------------
465 (defun desktop-buffer-mh () "Load a folder in the mh system."
466 (if (eq 'mh-folder-mode mam
)
472 ;; ----------------------------------------------------------------------------
473 (defun desktop-buffer-dired () "Load a directory using dired."
474 (if (eq 'dired-mode mam
)
475 (if (file-directory-p (file-name-directory (car misc
)))
478 (mapcar 'dired-insert-subdir
(cdr misc
))
480 (message "Directory %s no longer exists." (car misc
))
483 ;; ----------------------------------------------------------------------------
484 (defun desktop-buffer-file () "Load a file."
486 (if (or (file-exists-p fn
)
487 (and desktop-missing-file-warning
489 "File \"%s\" no longer exists. Re-create? "
491 (progn (find-file fn
) t
)
493 ;; ----------------------------------------------------------------------------
494 ;; Create a buffer, load its file, set is mode, ...; called from Desktop file
496 (defun desktop-create-buffer (ver fn bn mam mim pt mk ro misc
&optional locals
)
497 (let ((hlist desktop-buffer-handlers
)
500 (while (and (not result
) hlist
)
501 (setq handler
(car hlist
))
502 (setq result
(funcall handler
))
503 (setq hlist
(cdr hlist
)))
506 (if (not (equal (buffer-name) bn
))
508 (auto-fill-mode (if (nth 0 mim
) 1 0))
513 (setq mark-active
(car (cdr mk
))))
515 ;; Never override file system if the file really is read-only marked.
516 (if ro
(setq buffer-read-only ro
))
518 (let ((this (car locals
)))
520 ;; an entry of this form `(symbol . value)'
522 (make-local-variable (car this
))
523 (set (car this
) (cdr this
)))
524 ;; an entry of the form `symbol'
525 (make-local-variable this
)
527 (setq locals
(cdr locals
)))
530 ;; Backward compatibility -- update parameters to 205 standards.
531 (defun desktop-buffer (fn bn mam mim pt mk ro tl fc cfs cr misc
)
532 (desktop-create-buffer 205 fn bn mam
(cdr mim
) pt mk ro misc
533 (list (cons 'truncate-lines tl
)
534 (cons 'fill-column fc
)
535 (cons 'case-fold-search cfs
)
536 (cons 'case-replace cr
)
537 (cons 'overwrite-mode
(car mim
)))))
538 ;; ----------------------------------------------------------------------------
541 ;; desktop.el ends here.