emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] How define a hook function for `org-babel-post-tangle-hook' for


From: John Kitchin
Subject: Re: [O] How define a hook function for `org-babel-post-tangle-hook' for a single file?
Date: Sun, 03 Jan 2016 14:08:21 -0500
User-agent: mu4e 0.9.13; emacs 25.0.50.1

It sounds a little circular.

This org-file adds a hook function when loaded. Maybe you can adapt
something like this? ymmv...


#+BEGIN_SRC emacs-lisp :tangle my-local-hook.el
(+ 9 9)
#+END_SRC

* hook function

#+name: my-hook-function
#+BEGIN_SRC emacs-lisp
(defun my-special-hook () (message-box "tangled from org"))
#+END_SRC

#+RESULTS: my-hook-function
: my-special-hook

# Local Variables:
# eval: (progn (re-search-forward "my-hook-function") 
(org-babel-execute-src-block) (add-hook 'org-babel-post-tangle-hook 
'my-special-hook))
# End:



Grant Rettke writes:

> Good morning,
>
> * Desire
>
> - I've got a file X
> - I've got a hook function H
>   - It does post-processing, copying the tangled results to different
> directories
> - I want to defined H in X
> - I want H to be evaluated and run when X is tangled
>
> * Research
>
> - Emacs 25, Org Git current
> - org-babel-post-tangle-hook
> - File local variables and eval
>
> * Question
>
> What is the best way to do something like this?
>
> Sincerely,
>
> Grant Rettke

--
Professor John Kitchin
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
@johnkitchin
http://kitchingroup.cheme.cmu.edu



reply via email to

[Prev in Thread] Current Thread [Next in Thread]