5556575859606162636465
pyEdit.revealModelNode(node); } else { //no place specified until now... let's try to see if we should go to the start or end of the file if (searchForward) { pyEdit.selectAndReveal(doc.getLength(), 0); } else { pyEdit.selectAndReveal(0, 0); } }
5859606162636465666768
//no place specified until now... let's try to see if we should go to the start or end of the file if (searchForward) { pyEdit.selectAndReveal(doc.getLength(), 0); } else { pyEdit.selectAndReveal(0, 0); } } } /**
2122232425262728293031
try { Tuple<String, Integer> currToken = ps.getCurrToken(); if (currToken.o1 != null) { int len = currToken.o1.length(); if (len > 0) { pyEdit.selectAndReveal(currToken.o2, len); } } } catch (Exception e) { Log.log(e); }