* how to create dedicated buffers every time emacs starts?
@ 2005-07-31 15:47 Angelina Carlton
2005-07-31 16:19 ` Peter Dyballa
2005-08-02 17:20 ` Kevin Rodgers
0 siblings, 2 replies; 3+ messages in thread
From: Angelina Carlton @ 2005-07-31 15:47 UTC (permalink / raw)
Hello
I would like to create a dictionary buffer, an info buffer and a man page
buffer so that each time I do M-x dictionary, M-x info or M-x man
it goes into the assigned buffer.
Is something like this what i need? (doesn't work)
(setq special-display-buffer-names
'("*dictionary*" "*info*" "*Man*"))
basically, make these 3 buffers every time emacs starts and if I call
M-x whatever, place it in one of those buffers and not in the buffer I
happen to be working in.
possible?
thanks a lot!
--
-----Angelina Carlton-----
orchid on irc.freenode.net
brat@magma.ca
web:bzgirl.bakadigital.com
--------------------------
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: how to create dedicated buffers every time emacs starts?
2005-07-31 15:47 how to create dedicated buffers every time emacs starts? Angelina Carlton
@ 2005-07-31 16:19 ` Peter Dyballa
2005-08-02 17:20 ` Kevin Rodgers
1 sibling, 0 replies; 3+ messages in thread
From: Peter Dyballa @ 2005-07-31 16:19 UTC (permalink / raw)
Cc: help-gnu-emacs
Am 31.07.2005 um 17:47 schrieb Angelina Carlton:
> I would like to create a dictionary buffer, an info buffer and a man
> page
> buffer so that each time I do M-x dictionary, M-x info or M-x man
> it goes into the assigned buffer.
>
*info* is easy: (info)
(man "man") is a good start, but *I* would like to have a specialized
buffer for (man "apropos") too ...
--
Greetings
Pete
Math illiteracy affects 7 out of every 5 Americans.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: how to create dedicated buffers every time emacs starts?
2005-07-31 15:47 how to create dedicated buffers every time emacs starts? Angelina Carlton
2005-07-31 16:19 ` Peter Dyballa
@ 2005-08-02 17:20 ` Kevin Rodgers
1 sibling, 0 replies; 3+ messages in thread
From: Kevin Rodgers @ 2005-08-02 17:20 UTC (permalink / raw)
Angelina Carlton wrote:
> I would like to create a dictionary buffer, an info buffer and a man page
> buffer so that each time I do M-x dictionary, M-x info or M-x man
> it goes into the assigned buffer.
>
> Is something like this what i need? (doesn't work)
> (setq special-display-buffer-names
> '("*dictionary*" "*info*" "*Man*"))
That ensures that whenever a buffer with one of those names is
displayed, it will be displayed in its own frame. But it doesn't cause
any buffers with those names to be created...
> basically, make these 3 buffers every time emacs starts and if I call
> M-x whatever, place it in one of those buffers and not in the buffer I
> happen to be working in.
... for that, you have to call M-x whatever in your .emacs file:
(dictionary)
(info)
(man "man")
--
Kevin Rodgers
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2005-08-02 17:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-31 15:47 how to create dedicated buffers every time emacs starts? Angelina Carlton
2005-07-31 16:19 ` Peter Dyballa
2005-08-02 17:20 ` Kevin Rodgers
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).