From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julian Burgos Subject: Re: Newbie question Date: Fri, 08 Feb 2013 13:15:19 +0000 Message-ID: <5114FA67.40007@hafro.is> References: <20130208125016.GA24558@ken-HP-Mini-110-1000> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:46101) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U3nnf-0005Hm-H1 for emacs-orgmode@gnu.org; Fri, 08 Feb 2013 08:15:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U3nnd-0003SV-TK for emacs-orgmode@gnu.org; Fri, 08 Feb 2013 08:15:31 -0500 Received: from hafgarpur.hafro.is ([130.208.64.48]:41538) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U3nnd-0003R0-Ge for emacs-orgmode@gnu.org; Fri, 08 Feb 2013 08:15:29 -0500 In-Reply-To: <20130208125016.GA24558@ken-HP-Mini-110-1000> 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: Ken Cc: emacs-orgmode@gnu.org Hi Ken, If you do you will get an active timestamp with date and=20 time. will give you an inactive timestamp with date and time. I also have this code in my .emacs file, so whenever I create a headline=20 I get an inactive timestamp automatically. It should be easy to change=20 to get an active timestamp if you want. ;------------------------------------------------------------------------= ------ ;Creating new headlines insert inactive timestamps automatically (defun bh/insert-inactive-timestamp () (interactive) (org-insert-time-stamp nil t t nil nil nil)) (defun bh/insert-heading-inactive-timestamp () (save-excursion (org-return) (org-cycle) (bh/insert-inactive-timestamp))) (add-hook 'org-insert-heading-hook 'bh/insert-heading-inactive-timestamp) ;------------------------------------------------------------------------= - Enjoy! --=20 Julian Mariano Burgos, PhD Hafranns=F3knastofnunin/Marine Research Institute Sk=FAlagata 4, 121 Reykjav=EDk, Iceland S=EDmi/Telephone : +354-5752037 Br=E9fs=EDmi/Telefax: +354-5752001 Netfang/Email: julian@hafro.is On 02/08/2013 12:50 PM, Ken wrote: > Hello all, > > I am a relative newbie to org-mode. Right now I use it for todo lists, = I > use it in conjunction with the diary, and I use it for > journaling/note-taking. I am sure I am only using it fo a quarter or > less of what it can be used for. Anyway, my question is rather simple. > will allow you to insert a date. However, in my journal I use = a > full timestamp. Is there any way using a defined set of keys to insert = a > current TIMESTAMP on an entry (say as in a journal entry)? > > Thank you > Ken > >