Re: Using org-agenda-time-grid with lists

2020-12-11 Thread steve-humphreys
> Sent: Friday, December 11, 2020 at 11:22 PM > From: "Marco Wahl" > To: steve-humphr...@gmx.com > Cc: "Org-Mode mailing list" > Subject: Re: Using org-agenda-time-grid with lists > > Hi Steve! > > > I have made two versions for cal

Re: Using org-agenda-time-grid with lists

2020-12-11 Thread Marco Wahl
Hi Steve! > I have made two versions for calling org-agenda-time-grid, but the first does > not > comply with what the last call does. Yet the parameters are identical. > > (setq grid-displ '(today daily require-timed)) > (setq tm '(number-sequence 800 2000 100)) > (message "tm: %s" tm) > (setq

Re: Using org-agenda-time-grid with lists

2020-12-11 Thread TRS-80
On 2020-12-11 13:18, Christopher Dimech wrote: Perhaps you might get some ideas from https://github.com/oantolin/icomplete-vertical Oohh, Chris reply make me think different about this. My original reply was about simply printing an Elisp list (data type) to the *Messages* buffer. If

Re: Using org-agenda-time-grid with lists

2020-12-11 Thread Christopher Dimech
> Sent: Friday, December 11, 2020 at 6:23 PM > From: "TRS-80" > To: emacs-orgmode@gnu.org > Subject: Re: Using org-agenda-time-grid with lists > > On 2020-12-11 11:48, steve-humphr...@gmx.com wrote: > > TRS-80 wrote: > >> On 2020

Re: Using org-agenda-time-grid with lists

2020-12-11 Thread TRS-80
On 2020-12-11 11:48, steve-humphr...@gmx.com wrote: TRS-80 wrote: On 2020-12-11 10:45, steve-humphr...@gmx.com wrote: > > Incidentally, how can one print a list in messages buffer? Do you mean something other than standard: Correct, something other than "%s". ``` (message "%s" my-list)

Re: Using org-agenda-time-grid with lists

2020-12-11 Thread steve-humphreys
> Sent: Friday, December 11, 2020 at 5:39 PM > From: "TRS-80" > To: steve-humphr...@gmx.com > Cc: "Emacs-orgmode" > , "Marco Wahl" > , "Org-Mode mailing list" > Subject: Re: Using org-agenda-time-grid with lists > > On 20

Re: Using org-agenda-time-grid with lists

2020-12-11 Thread TRS-80
On 2020-12-11 10:45, steve-humphr...@gmx.com wrote: Incidentally, how can one print a list in messages buffer? Do you mean something other than standard: ``` (message "%s" my-list) ``` I wrote some quite involved function to take a list of variables and print them to Messages buffer,

Re: Using org-agenda-time-grid with lists

2020-12-11 Thread steve-humphreys
> Sent: Friday, December 11, 2020 at 4:28 PM > From: "Marco Wahl" > To: steve-humphr...@gmx.com > Cc: "Org-Mode mailing list" > Subject: Re: Using org-agenda-time-grid with lists > > steve-humphr...@gmx.com writes: > > > I am trying to ins

Re: Using org-agenda-time-grid with lists

2020-12-11 Thread Marco Wahl
steve-humphr...@gmx.com writes: > I am trying to insert finer timings in org-agenda with the following code. > Haw can one pass a list in a list? > > (setq tm '(number-sequence 800 2000 30)) > (setq org-agenda-time-grid '((daily today require-timed) >tm ".." "")) > > > But

Using org-agenda-time-grid with lists

2020-12-11 Thread steve-humphreys
I am trying to insert finer timings in org-agenda with the following code. Haw can one pass a list in a list? (setq tm '(number-sequence 800 2000 30)) (setq org-agenda-time-grid '((daily today require-timed) tm ".." "")) But this works well (setq org-agenda-time-grid