Example #1
0
File: prompt.py Project: tj90241/vx
 def dosearch(self, window, search_for, forwards):
     if not forwards:
         vx.move_right_window(window)
     return text.find_regex(search_for, window, forwards)
Example #2
0
def right(window=None):
    vx.move_right_window(window if window else windows.focused)
Example #3
0
def right(window=None):
    vx.move_right_window(window if window else windows.focused)
Example #4
0
 def dosearch(self, window, search_for, forward):
     if not forward:
         vx.move_right_window(window)
     return window.get_regex_linecoloffsetlength_of(search_for,
                                                    forward=forward)