On Mon, Nov 10, 2014 at 2:45 PM, Thomas S. Dye <t...@tsdye.com> wrote: > Grant Rettke <g...@wisdomandwonder.com> writes: > >> >> My approach here has been to use "hidden" source blocks that aren't >> exported but make it >> really easy to see the result during development. These settings >> should work on any configuration, >> so I didn't include mine here. > > I think you've set the :session header argument somewhere.
I did. I use: #+begin_src emacs-lisp (print emacs-version) #+end_src #+NAME: #+begin_example "24.3.1" #+end_example #+begin_src emacs-lisp (print org-version) #+end_src #+NAME: #+begin_example "8.2.10" #+end_example #+begin_src emacs-lisp (print (pp-to-string org-babel-default-header-args)) #+end_src #+NAME: #+begin_example "((:eval . \"always\") (:padline . \"yes\") (:noweb . \"no-export\") (:exports . \"both\") (:results . \"output replace\") (:comments . \"noweb\") (:session . \"none\") (:cache . \"no\") (:hlines . \"no\") (:tangle . \"no\")) " #+end_example #+begin_src emacs-lisp (print (pp-to-string org-babel-default-header-args:R)) #+end_src #+NAME: #+begin_example "((:session . \"*R*\")) " #+end_example