Welcome, guest | Sign In | My Account | Store | Cart

A Komodo JavaScript macro that can be used to display a custom completion pop-up.

Completions image

JavaScript, 7 lines
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));