Is there any way to create a "project file" in emacs? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T16:43:58Z http://stackoverflow.com/feeds/question/1052969 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1052969/is-there-any-way-to-create-a-project-file-in-emacs 5 Is there any way to create a "project file" in emacs? Jason Baker 2009-06-27T14:56:04Z 2009-06-28T21:58:15Z <p>I say "project file" in the loosest sense. I have a few python projects that I work on with ropemacs using emacs W32 for Windows. What would be ideal is if I could have an icon I could click on on my desktop to open up emacs, open up the rope project, and set the speed bar in the top-level directory of that project. Then I could also maybe have a way to open up the next project in its own emacs set up the same way (but for that project). Of course, it's also acceptable if there were an emacs command or a shell command I could use to achieve the same effect instead of an icon on my desktop.</p> <p>Is there any way to do this? I have absolutely no elisp-fu. :-(</p> http://stackoverflow.com/questions/1052969/is-there-any-way-to-create-a-project-file-in-emacs/1052995#1052995 1 Answer by meunierd for Is there any way to create a "project file" in emacs? meunierd 2009-06-27T15:08:10Z 2009-06-27T15:08:10Z <p>You can roll your own in bash/cmd.exe. The windows emacs distribution comes with a .bat file called runemacs.bat which accepts files to open as arguments. Write a small script and it should be able to open everything up from one icon.</p> http://stackoverflow.com/questions/1052969/is-there-any-way-to-create-a-project-file-in-emacs/1053004#1053004 2 Answer by wr for Is there any way to create a "project file" in emacs? wr 2009-06-27T15:11:36Z 2009-06-27T15:23:15Z <p>I use the following "solution" for myself: A project root is defined by a directory that contains a <code>Makefile</code>. I've bound F12 to the mode specific elisp function that "compiles" the project by makeing the first target of the corresponding Makefile. This is found by recursively going upwards from the directory of the current file.</p> <p>It is a little bit of setup, but you will never have to reconstruct your <code>.metadata</code> directory as was frequently the case with Eclipse before. And once set up, you just have to place the proper Makefiles around and you have your projects.</p> <pre><code>(defun get-makefile-recursively-higher () (loop for i below 100 for cwd = (expand-file-name default-directory) then next for next = (expand-file-name (concat cwd "/..")) for file = (concat cwd "/" "Makefile") do (cond ((and (file-exists-p file)) (return file))) until (equal cwd next)) ) </code></pre> <p>This is then used e.g. by the LaTeX and Python mode as follows:</p> <pre><code>(defun py-execute-prog (&amp;optional target) "Invoke python on the file being edited in the current buffer using arguments obtained from the minibuffer. It will save all of the modified buffers before trying to execute the file." (interactive) (let* (makefile file cmd) (setq makefile (get-makefile-recursively-higher)) (setq file (buffer-file-name (current-buffer))) (setq cmd (concat "make -f " makefile)) (setq default-directory (file-name-directory makefile)) (save-some-buffers (not py-ask-about-save) nil) (setq py-pdbtrack-do-tracking-p t) (if (get-buffer py-output-buffer) (kill-buffer py-output-buffer)) ; Get rid of buffer if it exists. (global-unset-key "\C-x\C-l" ) (global-unset-key "\C-x\C-p" ) (global-unset-key "\C-x\C-e" ) (global-unset-key "\C-x\C-n" ) (global-set-key "\C-x\C-l" 'py-last-exception) (global-set-key "\C-x\C-p" 'py-previous-exception) (global-set-key "\C-x\C-e" 'py-current-line-exception) (global-set-key "\C-x\C-n" 'py-next-exception) (define-key comint-mode-map [mouse-3] 'py-current-line-exception) (make-comint "Python Output" "make" nil "-f" makefile) (if (not (get-buffer py-output-buffer)) (message "No output.") (setq py-exception-buffer (current-buffer)) (pop-to-buffer py-output-buffer) ))) (defun make-tex (&amp;optional target) (interactive) (let (makefile cmd) (setq makefile (get-makefile-recursively-higher)) (save-buffer) (TeX-save-document (TeX-master-file)) (setq cmd (concat "make -j4 -f " makefile " LATEXPARAM=\"-halt-on-error -file-line-error\"" " TEXMASTER=" (expand-file-name (TeX-master-file)) ".tex" " TEXMASTERDIR=" (file-name-directory makefile) "/")) (when (stringp target) (setq cmd (concat cmd " " target)) ) (ad-activate-regexp "auto-compile-yes-or-no-p-always-yes") (compile cmd) (ad-deactivate-regexp "auto-compile-yes-or-no-p-always-yes") ) ) </code></pre> http://stackoverflow.com/questions/1052969/is-there-any-way-to-create-a-project-file-in-emacs/1053681#1053681 1 Answer by scottfrazer for Is there any way to create a "project file" in emacs? scottfrazer 2009-06-27T21:37:17Z 2009-06-27T21:37:17Z <p>You could get everything set up the way you want for a project, then use the answer I posted about using desktop.el and named sessions:</p> <p><a href="http://stackoverflow.com/questions/847962/what-alternate-session-managers-are-available-for-emacs/849180#849180">http://stackoverflow.com/questions/847962/what-alternate-session-managers-are-available-for-emacs/849180#849180</a></p> http://stackoverflow.com/questions/1052969/is-there-any-way-to-create-a-project-file-in-emacs/1055091#1055091 1 Answer by Jouni K. Seppänen for Is there any way to create a "project file" in emacs? Jouni K. Seppänen 2009-06-28T15:15:02Z 2009-06-28T15:15:02Z <p>There's <a href="http://wiki.github.com/jrockway/eproject" rel="nofollow">eproject</a>, but it seems to be very sparsely documented.</p> http://stackoverflow.com/questions/1052969/is-there-any-way-to-create-a-project-file-in-emacs/1055878#1055878 2 Answer by Travis B. Hartwell for Is there any way to create a "project file" in emacs? Travis B. Hartwell 2009-06-28T21:58:15Z 2009-06-28T21:58:15Z <p>I'm actually working on a solution to this very problem. I always had a group of files I wanted to open/close at the same time, plus do things like open a magit-status window, a dired buffer, etc. I've started on my own project mode called metaproject. It's in the very early stages, but is functional enough that I'm using it for project groups at work now.</p> <p>Check it out here: <a href="http://nafai77.github.com/metaproject/" rel="nofollow">http://nafai77.github.com/metaproject/</a></p> <p>What's in git is pretty stable, though sparsely documented. I'm going to start working on it again here soon. I currently have the basics of a small plug-in architecture, so you can register custom actions that can be done on project open.</p>