Reputation: 121
I am working on an in house JavaScript framework of my employer. The developers use either Eclipse/ STS or sublime text to code. I wanted to develop a code completion plugin for either of the above, which will provide code completion support for our framework APIs. Could someone provide me a few pointers or directions on how should I proceed.
Upvotes: 0
Views: 57
Reputation: 2617
I would suggest looking at tern.js. It already has an Eclipse plugin as well as Sublime plugin.
There is some support in tern to provide and generate definitions for APIs. Look at condense tool described in the docs. However even without it, completion in your project just might work. Give it a try.
Upvotes: 1