Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can Emacs support projects?

Tags:

emacs

Can Emacs support the concept of projects? That would be where several configuration options varies depending on what project you are working on.

like image 681
pupeno Avatar asked Nov 09 '08 22:11

pupeno


3 Answers

Yes, please look to the EDE package from CEDET library

like image 82
Alex Ott Avatar answered Sep 30 '22 14:09

Alex Ott


Check out the project-local-variables plugin. I haven't used it personally, but I've seen it mentioned in the Rinari-mode documentation for scoping down a find-file-in-project function.

like image 28
Justin Weiss Avatar answered Sep 30 '22 12:09

Justin Weiss


You generally wouldn't expect emacs to know about differences in build requirements---you let the build system (make or whatever) take care of that. To handle different coding standard define local yourproject.el files to set variables, load and unload local modes, etc... (use M-x load-file to run it).

like image 32
dmckee --- ex-moderator kitten Avatar answered Sep 30 '22 12:09

dmckee --- ex-moderator kitten