[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] local variables to initialize org buffer?
From: |
Berry, Charles |
Subject: |
Re: [O] local variables to initialize org buffer? |
Date: |
Mon, 1 Apr 2019 16:13:56 +0000 |
> On Mar 31, 2019, at 8:59 PM, Lawrence Bottorff <address@hidden> wrote:
>
> Sure, but how should it be implemented?
# Local Variables:
# eval: (org-babel-load-file (buffer-file-name))
# End:
or if you want to follow Eric's suggestion, something like:
#+name: startup
#+begin_src emacs-lisp :tangle no
(org-babel-load-file (buffer-file-name))
#+end_src
HTH,
Chuck