I'm working on adding auto complete to my bundle. I can get the suggestions to display, but not the tool tip. The current code section is as follows
completion = {"display" => removed_block,"tool_tip" => "testing this"} choices.push(completion)
options = { :extra_chars => '_/' , :case_insensitive => false, :initial_filter => "", :tool_tip_prefix => 'prefix' }
TextMate::UI.complete(choices, options)
The choices will display but the tool tip won't.
Timothy