-
21 Dec 2011 8:11 AM #1
API Autocomplete
API Autocomplete
I am going to write an autocomplete plugin for my favorite text editor, Sublime Text.
My thought right now is to go through the files in the pkgs folder. There I can find all the functions and configs for a class.
Does anyone know of a better way of doing this?
-
21 Dec 2011 8:23 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,714
- Vote Rating
- 436
Those are built packages. If you want the separate files then you would have to go through the src folder. If you just wanted one file that had everything, ext-all-*.js would be a good one.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
21 Dec 2011 8:51 AM #3
What about using JsDuck? Do you think it would be possible to export my own file which has all the info about the classes?
-
21 Dec 2011 8:54 AM #4Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,714
- Vote Rating
- 436
Pretty positive JSDuck can export JSON
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
21 Dec 2011 11:23 AM #5
Thank You!
If you use the option "--export api" with jsduck then it exports json that has the info for each class (functions, statics, etc).


Reply With Quote