emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Persisting the current working directory in an org-babel session
@ 2023-01-01 12:34 Adam Sneller
  2023-01-01 13:19 ` Ihor Radchenko
  0 siblings, 1 reply; 3+ messages in thread
From: Adam Sneller @ 2023-01-01 12:34 UTC (permalink / raw)
  To: emacs-orgmode

For some reason, I am unable to make changes to my working directory persist, from one emacs-lisp SRC block to the next.

For example, consider the following:

	* Literate programming in a single session
	:PROPERTIES:
	:header-args: :var DIR="/Users/adam/Desktop/test"
	:END:

	#+BEGIN_SRC emacs-lisp :session *elisp*
	(cd DIR)
	#+END_SRC

	#+RESULTS:
	: /Users/adam/Desktop/test/


	#+BEGIN_SRC emacs-lisp :session *elisp*
	(cd ".")
	#+END_SRC

	#+RESULTS:
	: /Users/adam/org/

The :header-args: define a starting directory (DIR="/Users/adam/Desktop/test"). The first block establishes the *elisp* session and navigates into DIR, using (cd DIR). Confirmation is then seen in the #+RESULTS. 

A second block is then created in the same *elisp* session. This simply echos the current working directory with (cd "."). BUT... the #+RESULTS show that the working directory has not persisted from our first block and has instead, defaulted to the default org-mode directory.

Now, I realise that I could have used :dir in my initial :header-args: to set the same working directory for all blocks. But what I am interested in is why my changes are not persisting, when (if I am not mistaken) this is the entire point of establishing a session?

Thanks!

Adam Sneller

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-04-09 13:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-01 12:34 Persisting the current working directory in an org-babel session Adam Sneller
2023-01-01 13:19 ` Ihor Radchenko
2024-04-09 13:23   ` Ihor Radchenko

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).