From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Robert Thorpe Newsgroups: gmane.emacs.help Subject: Re: I'm looking for a project management system for Emacs Date: Thu, 03 Apr 2014 02:38:23 +0100 Message-ID: <87ioqr42gg.fsf@robertthorpeconsulting.com> References: <20140329192129.35d65066@aga-netbook> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1396520284 22770 80.91.229.3 (3 Apr 2014 10:18:04 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 3 Apr 2014 10:18:04 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Marcin Borkowski Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Apr 03 12:17:56 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WVeIh-00075K-Fn for geh-help-gnu-emacs@m.gmane.org; Thu, 03 Apr 2014 11:51:11 +0200 Original-Received: from localhost ([::1]:41401 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WVWcE-0005Vw-Q3 for geh-help-gnu-emacs@m.gmane.org; Wed, 02 Apr 2014 21:38:50 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:56775) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WVWby-0005V6-64 for help-gnu-emacs@gnu.org; Wed, 02 Apr 2014 21:38:40 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WVWbr-0003oY-BH for help-gnu-emacs@gnu.org; Wed, 02 Apr 2014 21:38:34 -0400 Original-Received: from outbound-smtp05.blacknight.com ([81.17.249.38]:49977) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WVWbr-0003oS-54 for help-gnu-emacs@gnu.org; Wed, 02 Apr 2014 21:38:27 -0400 Original-Received: from mail.blacknight.com (pemlinmail02.blacknight.ie [81.17.254.11]) by outbound-smtp05.blacknight.com (Postfix) with ESMTP id 42EF9995A1 for ; Thu, 3 Apr 2014 01:37:22 +0000 (UTC) Original-Received: (qmail 13689 invoked from network); 3 Apr 2014 01:38:24 -0000 Original-Received: from unknown (HELO RTLaptop) (rt@robertthorpeconsulting.com@[109.76.134.177]) by 81.17.254.9 with ESMTPSA (DHE-RSA-AES128-SHA encrypted, authenticated); 3 Apr 2014 01:38:24 -0000 In-Reply-To: <20140329192129.35d65066@aga-netbook> (message from Marcin Borkowski on Sat, 29 Mar 2014 19:21:29 +0100) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 81.17.249.38 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:96910 Archived-At: Marcin Borkowski writes: > A toolbox of features to combine into a tailor-made solution is fine > for me. Especially that my requirements might not be exactly common > (especially the scattering of the "project" files around many > directories). You could write some simple functions like this: (defun project1 () (interactive) (find-file "project1/*" t) (find-file "elsewhere/randomfile.txt") (find-file "...")) (defun project2 () (interactive) (find-file "project2/*" t) (find-file "project1/foo.txt")) find-file can be used with wildcards, even in lisp programs. BR, Robert Thorpe