emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Opening org files on Aquamacs startup
@ 2010-11-27 12:39 Juri Artamonov
  2010-11-27 14:11 ` Stefan Vollmar
  0 siblings, 1 reply; 4+ messages in thread
From: Juri Artamonov @ 2010-11-27 12:39 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 184 bytes --]

Hello,

I'm using Aquamacs and I would like to specify set files that should be
opened when Aquamacs is started. Does anyone know how to do this?

Thank you,
                    Juri.

[-- Attachment #1.2: Type: text/html, Size: 247 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Opening org files on Aquamacs startup
  2010-11-27 12:39 Opening org files on Aquamacs startup Juri Artamonov
@ 2010-11-27 14:11 ` Stefan Vollmar
  2010-11-27 16:35   ` Juri Artamonov
  0 siblings, 1 reply; 4+ messages in thread
From: Stefan Vollmar @ 2010-11-27 14:11 UTC (permalink / raw)
  To: Juri Artamonov; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 748 bytes --]

Dear Juri,

On 27.11.2010, at 13:39, Juri Artamonov wrote:

> I'm using Aquamacs and I would like to specify set files that should be opened when Aquamacs is started. Does anyone know how to do this?

A rather elegant method involves the desktop library and allows you to generally restore the state of an arbitrary Emacs session:

http://www.gnu.org/software/emacs/manual/html_node/emacs/Saving-Emacs-Sessions.html

Warm regards,
 Stefan
-- 
Dr. Stefan Vollmar, Dipl.-Phys.
Head of IT group
Max-Planck-Institut für neurologische Forschung
Gleuelerstr. 50, 50931 Köln, Germany
Tel.: +49-221-4726-213  FAX +49-221-4726-298
Tel.: +49-221-478-5713  Mobile: 0160-93874279
Email: vollmar@nf.mpg.de   http://www.nf.mpg.de







[-- Attachment #1.2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 4409 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Opening org files on Aquamacs startup
  2010-11-27 14:11 ` Stefan Vollmar
@ 2010-11-27 16:35   ` Juri Artamonov
  2010-11-27 18:37     ` Jeff Horn
  0 siblings, 1 reply; 4+ messages in thread
From: Juri Artamonov @ 2010-11-27 16:35 UTC (permalink / raw)
  To: Stefan Vollmar, dto1138, emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 964 bytes --]

Thank you Guys, desktop is working.

Best regards,
                       Juri.

On Sat, Nov 27, 2010 at 2:11 PM, Stefan Vollmar <vollmar@nf.mpg.de> wrote:

> Dear Juri,
>
> On 27.11.2010, at 13:39, Juri Artamonov wrote:
>
> > I'm using Aquamacs and I would like to specify set files that should be
> opened when Aquamacs is started. Does anyone know how to do this?
>
> A rather elegant method involves the desktop library and allows you to
> generally restore the state of an arbitrary Emacs session:
>
>
> http://www.gnu.org/software/emacs/manual/html_node/emacs/Saving-Emacs-Sessions.html
>
> Warm regards,
>  Stefan
> --
> Dr. Stefan Vollmar, Dipl.-Phys.
> Head of IT group
> Max-Planck-Institut für neurologische Forschung
> Gleuelerstr. 50, 50931 Köln, Germany
> Tel.: +49-221-4726-213  FAX +49-221-4726-298
> Tel.: +49-221-478-5713  Mobile: 0160-93874279
> Email: vollmar@nf.mpg.de   http://www.nf.mpg.de
>
>
>
>
>
>
>

[-- Attachment #1.2: Type: text/html, Size: 1535 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Opening org files on Aquamacs startup
  2010-11-27 16:35   ` Juri Artamonov
@ 2010-11-27 18:37     ` Jeff Horn
  0 siblings, 0 replies; 4+ messages in thread
From: Jeff Horn @ 2010-11-27 18:37 UTC (permalink / raw)
  To: Juri Artamonov; +Cc: emacs-orgmode

I had problems with desktop. I've saved an elisp file with lines that
call the buffers I like to open when Aquamacs starts. I call it using
`M-x load-file` after emacs starts (I don't like keeping it in my init
file). The file looks something like:

(find-file "~/path/to/file1")
(find-file "~/path/to/file2")
(dired "~/path/to/directory")
etc...

HTH,
Jeff

On Sat, Nov 27, 2010 at 11:35 AM, Juri Artamonov <jartamonov@gmail.com> wrote:
> Thank you Guys, desktop is working.
> Best regards,
>                        Juri.
>
> On Sat, Nov 27, 2010 at 2:11 PM, Stefan Vollmar <vollmar@nf.mpg.de> wrote:
>>
>> Dear Juri,
>>
>> On 27.11.2010, at 13:39, Juri Artamonov wrote:
>>
>> > I'm using Aquamacs and I would like to specify set files that should be
>> > opened when Aquamacs is started. Does anyone know how to do this?
>>
>> A rather elegant method involves the desktop library and allows you to
>> generally restore the state of an arbitrary Emacs session:
>>
>>
>> http://www.gnu.org/software/emacs/manual/html_node/emacs/Saving-Emacs-Sessions.html
>>
>> Warm regards,
>>  Stefan
>> --
>> Dr. Stefan Vollmar, Dipl.-Phys.
>> Head of IT group
>> Max-Planck-Institut für neurologische Forschung
>> Gleuelerstr. 50, 50931 Köln, Germany
>> Tel.: +49-221-4726-213  FAX +49-221-4726-298
>> Tel.: +49-221-478-5713  Mobile: 0160-93874279
>> Email: vollmar@nf.mpg.de   http://www.nf.mpg.de
>>
>>
>>
>>
>>
>>
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
>



-- 
Jeffrey Horn
Graduate Lecturer and PhD Student in Economics
George Mason University

(704) 271-4797
jhorn@gmu.edu
jrhorn424@gmail.com

http://www.failuretorefrain.com/jeff/

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-11-27 18:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-27 12:39 Opening org files on Aquamacs startup Juri Artamonov
2010-11-27 14:11 ` Stefan Vollmar
2010-11-27 16:35   ` Juri Artamonov
2010-11-27 18:37     ` Jeff Horn

Code repositories for project(s) associated with this public inbox

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

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).