unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Emanuel Berg <embe8573@student.uu.se>
To: help-gnu-emacs@gnu.org
Subject: Re: writing ledger mode, date picker
Date: Mon, 09 Nov 2015 04:45:30 +0100	[thread overview]
Message-ID: <87oaf3deed.fsf@debian.uxu> (raw)
In-Reply-To: CAP_d_8X9U5ttJBeQLEQ9Mxk-pd7pJ=Gxs6A9seNOUvsu6GNDkA@mail.gmail.com

Yuri Khan <yuri.v.khan@gmail.com> writes:

> You want to ask a user to select a date on the
> calendar and then insert that date into a buffer.

Aha, that is what the OP wants to do!

Then what I provided should be modified somewhat - see
the code below.

The problem is, `calendar-cursor-to-date' only gives
me dates in February 1970... So what is that, Diane
Keaton and Mariel Hemingway?

Maybe the OP has better luck (?) with that!

(require 'calendar)

(defun calendar-cursor-date-into-asti ()
  (interactive)
  (let*((date (calendar-cursor-to-date))
        (date-string (format-time-string "%Y-%m-%d\n" date))
        (buffer (get-buffer-create "asti")) )
    (with-current-buffer
        buffer (insert date-string) )))

(define-key calendar-mode-map "\r" 'calendar-cursor-date-into-asti)

-- 
underground experts united
http://user.it.uu.se/~embe8573




  reply	other threads:[~2015-11-09  3:45 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-07 20:30 writing ledger mode, date picker jenia.ivlev
2015-11-07 21:18 ` jenia.ivlev
2015-11-07 23:49   ` Emanuel Berg
2015-11-08 19:25     ` jenia.ivlev
2015-11-08 22:38       ` Emanuel Berg
2015-11-09  2:42       ` Yuri Khan
2015-11-09  3:45         ` Emanuel Berg [this message]
2015-11-09  4:35           ` jenia.ivlev
2015-11-08  0:47 ` Drew Adams
2015-11-08 19:37   ` jenia.ivlev
2015-11-09  5:39 ` jenia.ivlev
2015-11-10  1:15   ` Emanuel Berg
2015-11-10  1:22   ` Emanuel Berg

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.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to=87oaf3deed.fsf@debian.uxu \
    --to=embe8573@student.uu.se \
    --cc=help-gnu-emacs@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.
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).