doc.getDefinitionList(selectionText,selectionRange.x);
//go to the definition
if(definitionList.size() == 1){
editor.showElement(definitionList.get(0));
}
else if(definitionList.size() > 1){
for(int i = 0; i < definitionList.size(); i++)
{
OutlineElement element = definitionList.get(i);