From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Andrea Crotti Newsgroups: gmane.emacs.help Subject: Re: TAGS for multiply project. Date: Fri, 23 Jul 2010 22:11:06 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1279916214 21877 80.91.229.12 (23 Jul 2010 20:16:54 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 23 Jul 2010 20:16:54 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Jul 23 22:16:53 2010 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OcOfr-0000jV-IQ for geh-help-gnu-emacs@m.gmane.org; Fri, 23 Jul 2010 22:16:51 +0200 Original-Received: from localhost ([127.0.0.1]:33410 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OcOap-0003Lq-6R for geh-help-gnu-emacs@m.gmane.org; Fri, 23 Jul 2010 16:11:39 -0400 Original-Received: from [140.186.70.92] (port=51300 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OcOaU-0003LJ-PP for help-gnu-emacs@gnu.org; Fri, 23 Jul 2010 16:11:19 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OcOaS-0004yt-Oh for help-gnu-emacs@gnu.org; Fri, 23 Jul 2010 16:11:18 -0400 Original-Received: from lo.gmane.org ([80.91.229.12]:60377) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OcOaS-0004ya-JG for help-gnu-emacs@gnu.org; Fri, 23 Jul 2010 16:11:16 -0400 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OcOaQ-0006dK-T2 for help-gnu-emacs@gnu.org; Fri, 23 Jul 2010 22:11:14 +0200 Original-Received: from p508a7c45.dip.t-dialin.net ([80.138.124.69]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 23 Jul 2010 22:11:14 +0200 Original-Received: from andrea.crotti.0 by p508a7c45.dip.t-dialin.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 23 Jul 2010 22:11:14 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 35 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: p508a7c45.dip.t-dialin.net User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.2 (darwin) Cancel-Lock: sha1:rjPXieCq5zpQq7aj0TX0Gny3j4Y= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:74259 Archived-At: > I like some it feture, so put into .emacs: > > (semantic-mode 1) > (global-semantic-idle-summary-mode 1) > (global-semantic-highlight-func-mode 1) > > I have 2 question about semantic. > > How can a go back after "C-c , J" (semantic-complete-jump) > like "M-*" (pop-tag-mark) for TAGS? > Good question, I never asked myself since C-x b RET gets me back to the original file, but it would be nice to have something like that. More nice would be open the buffer in a different window because normally that's what I want... > > I try: > > (mapc (lambda (item) (semantic-add-system-include item)) > '( > "C:/Program Files/Microsoft Visual Studio 9.0/VC/ATLMFC/INCLUDE" > "C:/Program Files/Microsoft Visual Studio 9.0/VC/INCLUDE" > "C:/Program Files/Microsoft SDKs/Windows/v6.1/include" > )) > > but seems this must be evaluated per buffer (not work globally). Mm reading the documentation is exactly what they wanted. And I think it actually makes sense somehow since you might need different include paths for different projects. I didn't see either how to do it globally, but there must be some way. $INCLUDEPATH maybe?