vote up 0 vote down star

I am writing a plug for Visual Studio 2005/2008. I want gain access the controls in the following picture:alt text

How do it ?

flag

69% accept rate
1  
So, you want to control the auto-complete list? Some pictures actually aren't worth 1,000 words. What are you trying to do? – ojrac Apr 27 at 19:46
you mean you want to implement a context menu? – curtisk Apr 27 at 19:48
I want to create a simple IntelliSense for Prototype(JavaScript Framework). – mykhaylo Apr 27 at 19:58
1  
Doesn't that just involve writing the "vsdoc" file (with the extra intellisense comments) to go alongside the actual code file? i.e. foo.js and foo.vsdoc.js? – Marc Gravell Apr 27 at 20:11
The problem is not the Intellisense. I want to use this control. – mykhaylo Apr 27 at 21:22
show 1 more comment

1 Answer

vote up 1 vote down

Intellisense in Visual Studio 2008 also works for javascript source code. You don't need an extra add-in for that but rather just documentation file for your javascript. It will also work for Prototype library but you won't have any documentation nor will it work in chaining multiple functions, because it doesn't know return types.

Anyway, this should be a nice start (since it's for 1.6.0 RC1 version): Prototype VS2008 Intellisense

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.