emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Niels Giesen <niels.giesen@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Timestamp increment inside tables
Date: Thu, 03 May 2007 19:33:45 +0200	[thread overview]
Message-ID: <87ejlxolqe.fsf@gmail.com> (raw)
In-Reply-To: <463a0628.02bdbc61.2bbf.2dafSMTPIN_ADDED@mx.google.com> (emacs-orgmode-request@gnu.org's message of "Thu, 03 May 2007 12:00:26 -0400")

Hi Carsten,

Please consider this patch to `org-table-copy-down', serving to increment timestamps in
an org-table while copying down, similar to integer icrements:

--- org.el	2007-04-25 08:26:21.000000000 -0100
+++ org2.el	2007-05-03 19:24:00.776923788 -0100
@@ -6495,7 +6495,11 @@
 column to be filled row-by-row.
 If the variable `org-table-copy-increment' is non-nil and the field is an
-integer, it will be incremented while copying."
+integer or a timestamp, it will be incremented while copying.  In the case of
+a timestamp, if the cursor is on the year, change the year.  If it is on the
+month or the day, change that.  Point will stay on the current date field
+in order to easily repeat the interval."
   (interactive "p")
   (let* ((colpos (org-table-current-column))
+	 (column (- (point) (point-at-bol)))
 	 (field (org-table-get-field))
 	 (non-empty (string-match "[^ \t]" field))
@@ -6526,5 +6530,8 @@
 	  (insert txt)
 	  (org-table-maybe-recalculate-line)
-	  (org-table-align))
+	  (org-table-align)
+	  (when (and org-table-copy-increment (org-at-timestamp-p t))
+	    (goto-char (+ (point-at-bol) column))
+	    (org-timestamp-up 1)))
       (error "No non-empty field found"))))
 
Table alignment does not seem to pose any problems, but this is one thing that might
require some critical looking into.

Regards,

Niels Giesen

PS: its use? Making expenses claims for train tickets without having to fire up OOo.
-- 
It's always darkest just before the lights go out.
		-- Alex Clark

       reply	other threads:[~2007-05-03 17:41 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <463a0628.02bdbc61.2bbf.2dafSMTPIN_ADDED@mx.google.com>
2007-05-03 17:33 ` Niels Giesen [this message]
2007-05-08  6:40   ` Timestamp increment inside tables Carsten Dominik

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

  List information: https://www.orgmode.org/

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

  git send-email \
    --in-reply-to=87ejlxolqe.fsf@gmail.com \
    --to=niels.giesen@gmail.com \
    --cc=emacs-orgmode@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 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).