angelozerr / tern.jsduck

Tern Plugin for ExtJS, CKEditor
MIT License
9 stars 3 forks source link

[ExtJS] Make completion work on class definition #5

Closed fflorent closed 8 years ago

fflorent commented 8 years ago

Based on the extends property, the completion would allow to autocomplete overridable properties and methods :

Ext.define('MyBtn', {
  extend: 'Ext.button.Button', // with extend, we know what properties / config we can override
  te| // => autcompletes with 'text' and 'textAlign'
});

I plan to work on it next week (on tuesday and wednesday).

Florent

angelozerr commented 8 years ago

Very nice feature!