angelozerr / tern.jsduck

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

[ExtJS] Make completion work on objects with xtype #8

Closed fflorent closed 8 years ago

fflorent commented 8 years ago

Based on the xtype property, we must be able to autocomplete the properties:

{
  xtype: 'button',
  te| // => autcompletes with 'text' and 'textAlign'
}

We also may be able to auto-complete the xtype string itself.

Florent