From: Jesper Harder <harder@myrealbox.com>
Subject: Re: Emacs configuration
Date: Mon, 30 Sep 2002 19:01:38 +0200 [thread overview]
Message-ID: <m3fzvrfm31.fsf@defun.localdomain> (raw)
In-Reply-To: mailman.1033377809.21117.help-gnu-emacs@gnu.org
"arthur.chereau" <arthur.chereau@voila.fr> writes:
> I'm configuring emacs 21.2 and there are some things I can't find any
> doc about, so I'm asking you:
>
> - How is it possible to configure the action done by the printer icon?
> I'd like it to call a2ps-buffer.
I don't know the command `a2ps-buffer' -- do you mean `ps-print-buffer'?
You can change the command from `print-buffer' to `ps-print-buffer' like
this:
(setf (nth 3 (assoc 'print-buffer tool-bar-map)) 'ps-print-buffer)
> - How is it possible to force emacs to confirm when killing the
> *scratch* buffer ?
(save-excursion
(set-buffer "*scratch*")
(make-local-variable 'kill-buffer-query-functions)
(setq kill-buffer-query-functions
(list (lambda ()
(if (buffer-modified-p)
(y-or-n-p "Really kill buffer? ")
t)))))
> - Is there any means of having only one emacs process running for all
> the emacs windows ? I mean, not like emacsclient or gnuserv,
Why not? This is exactly what they're meant for.
> - Last, is it possible to put all the configuration files under a
> ~/.emacs/ directory, containing the .emacs file and the contents of
> the ~/ .emacs.d/ directory ?
You can set `user-init-file' in your site-start.el file to tell Emacs
where to look for .emacs.
next parent reply other threads:[~2002-09-30 17:01 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <mailman.1033377809.21117.help-gnu-emacs@gnu.org>
2002-09-30 17:01 ` Jesper Harder [this message]
2002-09-30 17:02 ` Emacs configuration Kevin Rodgers
2002-10-01 6:04 ` Evgeny Roubinchtein
2002-10-01 14:57 ` Stefan Monnier <foo@acm.com>
2021-09-30 15:13 emacs configuration Jude DaShiell
2021-09-30 15:56 ` tomas
2021-09-30 16:05 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-09-30 15:57 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-09-30 17:32 ` 2QdxY4RzWzUUiLuE
2021-09-30 21:49 ` Jean Louis
2021-09-30 22:11 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-01 20:34 ` Jean Louis
2021-09-30 16:03 ` 2QdxY4RzWzUUiLuE
2021-09-30 16:38 ` John W Higgins
[not found] <mailman.1033485728.6848.help-gnu-emacs@gnu.org>
2002-10-01 20:45 ` Emacs configuration Jesper Harder
-- strict thread matches above, loose matches on Subject: below --
2002-10-01 15:21 arthur.chereau
[not found] <mailman.1033477527.28155.help-gnu-emacs@gnu.org>
2002-10-01 14:09 ` Jesper Harder
2002-10-01 13:04 arthur.chereau
2002-09-30 9:22 arthur.chereau
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=m3fzvrfm31.fsf@defun.localdomain \
--to=harder@myrealbox.com \
/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).