A Komodo JavaScript macro that can be used to display a custom completion pop-up.
1 2 3 4 5 6 7 | /**
* @type {Components.interfaces.ISciMoz}
*/
var scimoz = ko.views.manager.currentView.scimoz;
var sep = String.fromCharCode(scimoz.autoCSeparator);
var completions = ["item1", "item2"];
scimoz.autoCShow(0, completions.join(sep));
|