all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* How to create emacs TAG file for the sources.
@ 2011-02-04  4:19 Anand Dhanakshirur
  2011-02-04  8:32 ` Eli Zaretskii
  0 siblings, 1 reply; 5+ messages in thread
From: Anand Dhanakshirur @ 2011-02-04  4:19 UTC (permalink / raw)
  To: semantic cedet; +Cc: emacs help

Hi,
I want to create emacs TAG files for the sources(*.cpp, *c, *.h files)
The root of the sources is say /home/asd/temp.
What is the command for that?


      

------------------------------------------------------------------------------
The modern datacenter depends on network connectivity to access resources
and provide services. The best practices for maximizing a physical server's
connectivity to a physical network are well understood - see how these
rules translate into the virtual world? 
http://p.sf.net/sfu/oracle-sfdevnlfb

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: How to create emacs TAG file for the sources.
  2011-02-04  4:19 How to create emacs TAG file for the sources Anand Dhanakshirur
@ 2011-02-04  8:32 ` Eli Zaretskii
  2011-02-04 10:02   ` Anand Dhanakshirur
                     ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Eli Zaretskii @ 2011-02-04  8:32 UTC (permalink / raw)
  To: Anand Dhanakshirur; +Cc: help-gnu-emacs, cedet-semantic

> Date: Thu, 3 Feb 2011 20:19:55 -0800 (PST)
> From: Anand Dhanakshirur <adhanakshirur@yahoo.com>
> Cc: emacs help <help-gnu-emacs@gnu.org>
> 
> I want to create emacs TAG files for the sources(*.cpp, *c, *.h files)
> The root of the sources is say /home/asd/temp.
> What is the command for that?

Try this:

   find /home/asd/temp -name "*.[ch]" -o -name "*.cpp" | etags -



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: How to create emacs TAG file for the sources.
  2011-02-04  8:32 ` Eli Zaretskii
@ 2011-02-04 10:02   ` Anand Dhanakshirur
  2011-02-06 21:09   ` Oleksandr Gavenko
  2011-02-09 21:24   ` Oleksandr Gavenko
  2 siblings, 0 replies; 5+ messages in thread
From: Anand Dhanakshirur @ 2011-02-04 10:02 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: emacs help, semantic cedet

That works..

--- On Fri, 2/4/11, Eli Zaretskii <eliz@gnu.org> wrote:

> From: Eli Zaretskii <eliz@gnu.org>
> Subject: Re: How to create emacs TAG file for the sources.
> To: "Anand Dhanakshirur" <adhanakshirur@yahoo.com>
> Cc: cedet-semantic@lists.sourceforge.net, help-gnu-emacs@gnu.org
> Date: Friday, February 4, 2011, 2:02 PM
> > Date: Thu, 3 Feb 2011 20:19:55
> -0800 (PST)
> > From: Anand Dhanakshirur <adhanakshirur@yahoo.com>
> > Cc: emacs help <help-gnu-emacs@gnu.org>
> > 
> > I want to create emacs TAG files for the
> sources(*.cpp, *c, *.h files)
> > The root of the sources is say /home/asd/temp.
> > What is the command for that?
> 
> Try this:
> 
>    find /home/asd/temp -name "*.[ch]" -o
> -name "*.cpp" | etags -
> 


      

------------------------------------------------------------------------------
The modern datacenter depends on network connectivity to access resources
and provide services. The best practices for maximizing a physical server's
connectivity to a physical network are well understood - see how these
rules translate into the virtual world? 
http://p.sf.net/sfu/oracle-sfdevnlfb

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: How to create emacs TAG file for the sources.
  2011-02-04  8:32 ` Eli Zaretskii
  2011-02-04 10:02   ` Anand Dhanakshirur
@ 2011-02-06 21:09   ` Oleksandr Gavenko
  2011-02-09 21:24   ` Oleksandr Gavenko
  2 siblings, 0 replies; 5+ messages in thread
From: Oleksandr Gavenko @ 2011-02-06 21:09 UTC (permalink / raw)
  To: help-gnu-emacs; +Cc: cedet-semantic

On 2011-02-04 10:32, Eli Zaretskii wrote:
>> Date: Thu, 3 Feb 2011 20:19:55 -0800 (PST)
>> From: Anand Dhanakshirur<adhanakshirur@yahoo.com>
>> Cc: emacs help<help-gnu-emacs@gnu.org>
>>
>> I want to create emacs TAG files for the sources(*.cpp, *c, *.h files)
>> The root of the sources is say /home/asd/temp.
>> What is the command for that?
>
> Try this:
>
>     find /home/asd/temp -name "*.[ch]" -o -name "*.cpp" | etags -
>
More complex example you can found in recently updated page (by me xD):

   http://www.emacswiki.org/emacs/EtagsTable#toc2

-- 
Best regards!




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: How to create emacs TAG file for the sources.
  2011-02-04  8:32 ` Eli Zaretskii
  2011-02-04 10:02   ` Anand Dhanakshirur
  2011-02-06 21:09   ` Oleksandr Gavenko
@ 2011-02-09 21:24   ` Oleksandr Gavenko
  2 siblings, 0 replies; 5+ messages in thread
From: Oleksandr Gavenko @ 2011-02-09 21:24 UTC (permalink / raw)
  To: help-gnu-emacs

On 2011-02-04 10:32, Eli Zaretskii wrote:
>> Date: Thu, 3 Feb 2011 20:19:55 -0800 (PST)
>> From: Anand Dhanakshirur<adhanakshirur@yahoo.com>
>> Cc: emacs help<help-gnu-emacs@gnu.org>
>>
>> I want to create emacs TAG files for the sources(*.cpp, *c, *.h files)
>> The root of the sources is say /home/asd/temp.
>> What is the command for that?
>
> Try this:
>
>     find /home/asd/temp -name "*.[ch]" -o -name "*.cpp" | etags -
>
More complex example you can found in recently updated page (by me xD):

   http://www.emacswiki.org/emacs/EtagsTable#toc2

-- 
Best regards!




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-02-09 21:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-04  4:19 How to create emacs TAG file for the sources Anand Dhanakshirur
2011-02-04  8:32 ` Eli Zaretskii
2011-02-04 10:02   ` Anand Dhanakshirur
2011-02-06 21:09   ` Oleksandr Gavenko
2011-02-09 21:24   ` Oleksandr Gavenko

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.