* When is the right time to modify the contents of org-structure-template-alist?
@ 2014-06-09 23:03 Grant Rettke
2014-06-09 23:14 ` Jorge A. Alfaro-Murillo
0 siblings, 1 reply; 3+ messages in thread
From: Grant Rettke @ 2014-06-09 23:03 UTC (permalink / raw)
To: emacs-orgmode
Hi,
Wanting to modify the contents of org-structure-template-alist I had
this code run at startup after org was required:
(mapc (lambda (asc)
(let ((org-sce-dc (downcase (nth 1 asc))))
(setf (nth 1 asc) org-sce-dc)))
org-structure-template-alist)
That didn't modify the list, though.
When I run that code after Emacs is started up, it works as expected.
I tried putting that code in the org mode hook too, with the same result.
Suspect my ignorance is catching up with me.
Any ideas what I may be doing wrong here?
Kind regards,
Grant Rettke | AAAS, ACM, ASA, FSF, IEEE, SIAM, Sigma Xi
gcr@wisdomandwonder.com | http://www.wisdomandwonder.com/
“Wisdom begins in wonder.” --Socrates
((λ (x) (x x)) (λ (x) (x x)))
“Life has become immeasurably better since I have been forced to stop
taking it seriously.” --Thompson
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: When is the right time to modify the contents of org-structure-template-alist?
2014-06-09 23:03 When is the right time to modify the contents of org-structure-template-alist? Grant Rettke
@ 2014-06-09 23:14 ` Jorge A. Alfaro-Murillo
2014-06-10 1:32 ` Grant Rettke
0 siblings, 1 reply; 3+ messages in thread
From: Jorge A. Alfaro-Murillo @ 2014-06-09 23:14 UTC (permalink / raw)
To: emacs-orgmode
Grant Rettke <gcr@wisdomandwonder.com> writes:
> Hi,
>
> Wanting to modify the contents of org-structure-template-alist I had
> this code run at startup after org was required:
>
> (mapc (lambda (asc)
> (let ((org-sce-dc (downcase (nth 1 asc))))
> (setf (nth 1 asc) org-sce-dc)))
> org-structure-template-alist)
>
> That didn't modify the list, though.
>
> When I run that code after Emacs is started up, it works as expected.
>
> I tried putting that code in the org mode hook too, with the same result.
Hi Grant,
Since org-structure-template-alist is defined in org.el, you could
modify it after org.el loads:
#+BEGIN_SRC emacs-lisp
(eval-after-load "org"
'(progn
;; modify org-structure-template-alist here
))
#+END_SRC
Best,
Jorge.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: When is the right time to modify the contents of org-structure-template-alist?
2014-06-09 23:14 ` Jorge A. Alfaro-Murillo
@ 2014-06-10 1:32 ` Grant Rettke
0 siblings, 0 replies; 3+ messages in thread
From: Grant Rettke @ 2014-06-10 1:32 UTC (permalink / raw)
To: Jorge A. Alfaro-Murillo; +Cc: emacs-orgmode
Thanks Jorge.
It turns out that the error occurred between my keyboard and my chair.
Grant Rettke | AAAS, ACM, ASA, FSF, IEEE, SIAM, Sigma Xi
gcr@wisdomandwonder.com | http://www.wisdomandwonder.com/
“Wisdom begins in wonder.” --Socrates
((λ (x) (x x)) (λ (x) (x x)))
“Life has become immeasurably better since I have been forced to stop
taking it seriously.” --Thompson
On Mon, Jun 9, 2014 at 6:14 PM, Jorge A. Alfaro-Murillo
<jorge.a.alfaro@gmail.com> wrote:
> Grant Rettke <gcr@wisdomandwonder.com> writes:
>
>> Hi,
>>
>> Wanting to modify the contents of org-structure-template-alist I had
>> this code run at startup after org was required:
>>
>> (mapc (lambda (asc)
>> (let ((org-sce-dc (downcase (nth 1 asc))))
>> (setf (nth 1 asc) org-sce-dc)))
>> org-structure-template-alist)
>>
>> That didn't modify the list, though.
>>
>> When I run that code after Emacs is started up, it works as expected.
>>
>> I tried putting that code in the org mode hook too, with the same result.
>
> Hi Grant,
>
> Since org-structure-template-alist is defined in org.el, you could
> modify it after org.el loads:
>
> #+BEGIN_SRC emacs-lisp
> (eval-after-load "org"
> '(progn
> ;; modify org-structure-template-alist here
> ))
> #+END_SRC
>
> Best,
>
> Jorge.
>
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-06-10 1:32 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-09 23:03 When is the right time to modify the contents of org-structure-template-alist? Grant Rettke
2014-06-09 23:14 ` Jorge A. Alfaro-Murillo
2014-06-10 1:32 ` Grant Rettke
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).