From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ken Mankoff Subject: Re: Load Custom Agenda at emacs launch Date: Thu, 16 Aug 2012 17:53:02 -0700 Message-ID: References: <87ehn6pi33.fsf@ericabrahamsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:42507) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T2AoD-00022j-9t for emacs-orgmode@gnu.org; Thu, 16 Aug 2012 20:53:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T2AoC-0001E9-DN for emacs-orgmode@gnu.org; Thu, 16 Aug 2012 20:53:05 -0400 Received: from mail-lpp01m010-f41.google.com ([209.85.215.41]:59920) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T2AoC-0001Dt-66 for emacs-orgmode@gnu.org; Thu, 16 Aug 2012 20:53:04 -0400 Received: by lahd3 with SMTP id d3so1845113lah.0 for ; Thu, 16 Aug 2012 17:53:03 -0700 (PDT) In-Reply-To: <87ehn6pi33.fsf@ericabrahamsen.net> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Eric Abrahamsen Cc: emacs-orgmode@gnu.org Hi Eric, On Thu, Aug 16, 2012 at 3:50 PM, Eric Abrahamsen wrote: > On Fri, Aug 17 2012, Ken Mankoff wrote: > >> Hi, >> >> I find the first thing I do after launching emacs is to load my custom >> agenda, bound to C-c a c. >> >> Is there a way I can launch this from the command-line? I know I can >> run 'emacs -eval "(foo)"', but I haven't been able to determine the >> function that loads my custom agenda. Does such a function exist, or >> is there a way to specific the keystrokes from the command line? > > Hi Ken, > > If you look at the docstring for `org-agenda', you'll see you can call > it with the prefix arg as the first argument, and the selector key as > the second. Assuming you don't need a prefix argument, this should work > for you: > > (org-agenda nil "c") > > Put that at the bottom of your init file (or run it as an after-init > hook), and it will be the first thing you see when you start emacs. > That works fairly well. I'm doing the CLI --eval version because I often launch emacs w/o wanting to enter org mode. But I get a screen with 90% org and 10% *scratch* buffer... Again, some searching and trying to call the "kill-buffer" function, and I haven't figured it out. Any hints on how to get full-terminal agenda mode? Sorry if these are newbie questions. -k.