Preventing automatic change of default-directory - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T10:10:17Zhttp://stackoverflow.com/feeds/question/354490http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/354490/preventing-automatic-change-of-default-directory1Preventing automatic change of default-directoryBrian Carper2008-12-09T22:31:15Z2009-01-18T18:55:48Z
<p>As per <a href="http://www.gnu.org/software/emacs/manual/html_node/emacs/File-Names.html" rel="nofollow">the Emacs docs</a>, every time you open a file, Emacs changes <code>default-directory</code> to the directory containing that file. </p>
<p>Then, if the cursor is in that buffer and you (for example) start SLIME, it uses <code>default-directory</code> as the current working directory for SLIME. If you try to open a new file, it opens the file with <code>default-directory</code> as your starting point.</p>
<p>I want to be able to <code>M-x cd</code> or otherwise <code>cd</code> to a directory, and then never have Emacs change my current working directory to anything but that directory until I tell it otherwise. I want this to be global across all buffers, so that any time I'm doing something involving the current working directory, I know what it's set to regardless of where my cursor is at the moment. Is there a way to do this?</p>
http://stackoverflow.com/questions/354490/preventing-automatic-change-of-default-directory/354654#3546542Answer by jurta for Preventing automatic change of default-directoryjurta2008-12-09T23:50:37Z2008-12-09T23:50:37Z<p>You could try using something like this:</p>
<pre><code>(add-hook 'find-file-hook
(lambda ()
(setq default-directory command-line-default-directory)))
</code></pre>
http://stackoverflow.com/questions/354490/preventing-automatic-change-of-default-directory/365567#3655671Answer by jplindstrom for Preventing automatic change of default-directoryjplindstrom2008-12-13T18:56:10Z2008-12-13T18:56:10Z<p>This is not an answer to your question, but it might be a solution to your problem.</p>
<p>Take a look at <a href="http://www.shellarchive.co.uk/content/emacs.html" rel="nofollow">project-root</a>.</p>
<p>I use that to provide a Find File relative to the project root. I'll see if I can find the elisp snippet on Monday when I'm back at the office.</p>
<p>You could even possibly use it with the other trick mentioned in this thread to find a suitable target directory to cd into.</p>
http://stackoverflow.com/questions/354490/preventing-automatic-change-of-default-directory/376184#3761841Answer by jurta for Preventing automatic change of default-directoryjurta2008-12-17T21:59:03Z2008-12-17T21:59:03Z<p>Another variant is to bind <em>default-directory</em> to the necessary directory in directory-local variables, e.g. in the .dir-locals.el file in one of your parent directories to something like:</p>
<pre><code>((nil . ((default-directory . "~/.emacs.d/"))))
</code></pre>
http://stackoverflow.com/questions/354490/preventing-automatic-change-of-default-directory/455703#4557030Answer by Brian Carper for Preventing automatic change of default-directoryBrian Carper2009-01-18T18:55:48Z2009-01-18T18:55:48Z<p>This is the best I've come up with so far, sadly:</p>
<pre><code>(defun find-file-save-directory ()
(interactive)
(setq saved-default-directory default-directory)
(ido-find-file)
(setq default-directory saved-default-directory))
(global-set-key "\C-x\C-f" 'find-file-save-directory)
</code></pre>
<p>This works as long as <code>default-directory</code> is properly set before I <code>C-x C-f</code>. I'm going to Accept jurta's answer for pointing me in a useful direction.</p>