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).
Based on the
extends
property, the completion would allow to autocomplete overridable properties and methods :I plan to work on it next week (on tuesday and wednesday).
Florent