From: Thierry Volpiatto <thierry.volpiatto@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: automatically save a specific buffer on exit
Date: Wed, 04 Feb 2009 22:11:42 +0100 [thread overview]
Message-ID: <87hc39uctt.fsf@tux.homenetwork> (raw)
In-Reply-To: 1233779280.689554@arno.fh-trier.de
Hi,
Andreas Politz <politza@fh-trier.de> writes:
> Hi,
>
> I have a persistent scratch buffer with a file attached
> and I would like emacs to have it saved whenever I
> leave the editor.
> 'kill-emacs-hook' runs to late and `write-file-functions'
> doesn't seem to be aproppriate either.
Kill-emacs-hook work fine here.
Here the code i use:
,----
| (defvar save-scratch-file "~/.emacs.d/save-scratch.el")
| (defun tv-save-scratch (&optional append)
| (interactive "P")
| (with-current-buffer "*scratch*"
| (widen)
| (goto-char (point-min))
| (forward-line 1)
| (let* ((beg (point))
| (end (point-max))
| (buffer-contents (buffer-substring beg end)))
| (save-excursion
| (find-file save-scratch-file)
| (if (or current-prefix-arg
| append)
| (progn
| (goto-char (point-max))
| (insert buffer-contents)
| (save-buffer)
| (kill-buffer (current-buffer)))
| (erase-buffer)
| (goto-char (point-min))
| (insert buffer-contents)
| (save-buffer)
| (kill-buffer (current-buffer)))))))
|
| (defun tv-restore-scratch-buffer ()
| (with-current-buffer "*scratch*"
| (goto-char (point-max))
| (forward-line)
| (insert-file-contents save-scratch-file)))
|
| (add-hook 'kill-emacs-hook 'tv-save-scratch)
| (add-hook 'emacs-startup-hook 'tv-restore-scratch-buffer)
`----
--
A + Thierry Volpiatto
Location: Saint-Cyr-Sur-Mer - France
next prev parent reply other threads:[~2009-02-04 21:11 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-04 20:26 automatically save a specific buffer on exit Andreas Politz
2009-02-04 21:11 ` Thierry Volpiatto [this message]
2009-02-04 21:30 ` Lennart Borgman
2009-02-06 2:42 ` Kevin Rodgers
[not found] ` <mailman.21.1233782719.10249.help-gnu-emacs@gnu.org>
2009-02-04 21:59 ` Andreas Politz
2009-02-05 7:41 ` Thierry Volpiatto
2009-02-06 8:53 ` Thierry Volpiatto
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87hc39uctt.fsf@tux.homenetwork \
--to=thierry.volpiatto@gmail.com \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).