Есть код:
var self = this;
this.editor.commands.addCommand({
name: "gotoline",
bindKey: {win: "Ctrl-L", mac: "Command-Option-L"},
//exec: function (){ self.showGotoLineWindow.call(self) },
exec: this.showGotoLineWindow,
readOnly: true
});
Тоесть для
exec нужно указать метод showGotoLineWindow моего объекта, и чтобы он вызывался с this, указывающем на мой объект.