Welcome, guest | Sign In | My Account | Store | Cart
// For Komodo 6
if (ko.views.manager.currentView &&
    ko.views.manager.currentView.scimoz) {
    // Set the number of completions shown in the list.
    ko.views.manager.currentView.scimoz.autoCMaxHeight = 10;
}

// For Komodo 7
if (ko.prefs) {
  ko.prefs.setLongPref("codeintel_autocomplete_max_rows", 10);
}

Diff to Previous Revision

--- revision 1 2010-03-29 18:11:36
+++ revision 2 2012-03-15 23:20:25
@@ -1,5 +1,11 @@
+// For Komodo 6
 if (ko.views.manager.currentView &&
     ko.views.manager.currentView.scimoz) {
     // Set the number of completions shown in the list.
     ko.views.manager.currentView.scimoz.autoCMaxHeight = 10;
 }
+
+// For Komodo 7
+if (ko.prefs) {
+  ko.prefs.setLongPref("codeintel_autocomplete_max_rows", 10);
+}

History