#!/usr/bin/env python
"""emano - selectFrom.py"""

def selectFrom(editor): 
   y, x, q, p = editor.mainwin.position()
   editor.doc.selection = [[q, p], [q, p]]

if __name__=="__main__": 
   print __doc__