Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] How to start my plugin when C editor is started?

It is similar with 'Mark Occurrence'. It depends on AST generated by CDT. I used SharedASTJob which is public and exported by CDT, so I could import it in my plugin and didn't have to extend existing extension points.
I want the plugin to be activated when C editor is opened (ie, when a c file is opened) but I'm afraid I couldn't find how to do that.


---- On Tue, 29 Mar 2011 22:37:25 +0900 Doug Schaefer <Doug.Schaefer@xxxxxxxxxxxxx> wrote ----

What kind of functionality? How did you extend the CDT editor without already implementing one of the existing extension points?

 

From: cdt-dev-bounces@xxxxxxxxxxx [mailto:cdt-dev-bounces@xxxxxxxxxxx] On Behalf Of wooyoung.cho
Sent: Tuesday, March 29, 2011 1:50 AM
To: cdt-dev@xxxxxxxxxxx
Subject: [cdt-dev] How to start my plugin when C editor is started?

 

Hi,
I'm writing my own plugin which depends on CDT. It adds additional functionality to C editor, so it needs to be started while C editor is started.
Is there an appropriate extension point provided by CDT for this purpose?
Or any other suggestions?

Thanks,
Cho.

_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cdt-dev


Back to the top