class MyList < java.util.ArrayList def initialize super(['a', 'b']) end end list = MyList.new list.<Ctrl-Space>
ArrayList methods are not shown in the completion list. If the initialize method is removed, the methods are shown correctly.