all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Constantin Kulikov <zxnotdead@gmail.com>
To: 13251@debbugs.gnu.org
Subject: bug#13251: Wishlist: Add ability to set initial buffer for new frames.
Date: Sat, 22 Dec 2012 00:30:03 +0300	[thread overview]
Message-ID: <CAFkz2yqHwMnH2=whovv6-qCRwbSqAA1TKijpMmceM1J2XqPYBA@mail.gmail.com> (raw)
In-Reply-To: <CAFkz2yqkZ70J67TSZUJwVmDp=01oK6LZGv7g_4MEO2K4Tca4bw@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 2938 bytes --]

ah sorry, don't need that `or' in server.el:
          (unless (or files commands)
            (switch-to-buffer
             (get-buffer-create
              (cond
               ((stringp initial-buffer-choice) (find-file-noselect
initial-buffer-choice))
               ((functionp initial-buffer-choice) (funcall
initial-buffer-choice))
               (t "*scratch*")))
             'norecord))



2012/12/22 Constantin Kulikov <zxnotdead@gmail.com>

> // Discussion in devel.
> https://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00521.html
> Short:
> I want to be able to set buffer that will be displayed in window of newly
> created frame.
> I need it for my emacs package, that will save and restore some emacs
> state including
> last window configurations, opened and displayed buffers and such.
> I tried this: add hook to `after-make-frame-functions'. Inside this hook I
> do
> `(switch-to-buffer <some-buffer>)' and frame is switched to that
> <some-buffer> at first,
> but after a short time it's switched to *scratch*.
>
> The one way I found how to overcome this behaviour is by setting the
> `initial-buffer-choice' in the `after-make-frame-functions' hook. One
> drawback of this
> approach is that it could only be set to name of file, t or nil and so
> there is no way to
> force switching to buffer without underlying file. This could be fixed int
> server.el:1258
> replacing
>
>   (unless (or files commands)
>         (if (stringp initial-buffer-choice)
>         (find-file initial-buffer-choice)
>           (switch-to-buffer (get-buffer-create "*scratch*")
>                 'norecord)))
>
> to
>           (unless (or files commands)
>             (switch-to-buffer
>              (get-buffer-create
>               (or (cond
>                    ((stringp initial-buffer-choice) (find-file-noselect
> initial-buffer-choice))
>                    ((functionp initial-buffer-choice) (funcall
> initial-buffer-choice)))
>                   "*scratch*"))
>              'norecord))
>
> and modified defcustom in in startup.el:41 would be:
>
> (defcustom initial-buffer-choice nil
>   "Buffer to show after starting Emacs.
> If the value is nil and `inhibit-startup-screen' is nil, show the
> startup screen.  If the value is a string, visit the specified file
> or directory using `find-file'.  If t, open the `*scratch*'
> buffer. If function, switch to a buffer returned by this function.
>
> A string value also causes emacsclient to open the specified file
> or directory when no target file is specified."
>   :type '(choice
>       (const     :tag "Startup screen" nil)
>       (directory :tag "Directory" :value "~/")
>       (file      :tag "File" :value "~/.emacs")
>       (function  :tag "Function")
>       (const     :tag "Lisp scratch buffer" t))
>   :version "23.1"
>   :group 'initialization)
>
> This code allows setting `initial-buffer-choice' to a function returning
> needed buffer.
>
>

[-- Attachment #2: Type: text/html, Size: 4068 bytes --]

  reply	other threads:[~2012-12-21 21:30 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-21 21:16 bug#13251: Wishlist: Add ability to set initial buffer for new frames Constantin Kulikov
2012-12-21 21:30 ` Constantin Kulikov [this message]
2012-12-22 15:42 ` martin rudalics
2012-12-22 19:51   ` Constantin Kulikov
2012-12-22 20:18     ` Constantin Kulikov
2012-12-23 10:14     ` martin rudalics
     [not found]       ` <CAFkz2yrdFMbXSCknkhQZTmbMsYBWCAO9uOayun6BZT_LJdhrjw@mail.gmail.com>
2012-12-23 17:04         ` bug#13251: Fwd: " Constantin Kulikov
2012-12-24 18:05           ` martin rudalics
2012-12-24 19:37             ` Constantin Kulikov
2013-01-02  8:03               ` martin rudalics

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAFkz2yqHwMnH2=whovv6-qCRwbSqAA1TKijpMmceM1J2XqPYBA@mail.gmail.com' \
    --to=zxnotdead@gmail.com \
    --cc=13251@debbugs.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.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.