Home | History | Annotate | Download | only in curses

Lines Matching full:move

33     Ctrl-N      Cursor down; move down one line.
35 Ctrl-P Cursor up; move up one line.
37 Move operations do nothing if the cursor is at an edge where the movement
82 self.win.move(backy, backx)
92 self.win.move(y, 0)
95 self.win.move(y, x-1)
99 self.win.move(y-1, self._end_of_line(y-1))
101 self.win.move(y-1, self.maxx)
108 self.win.move(y, self._end_of_line(y))
110 self.win.move(y, self.maxx)
113 self.win.move(y, x+1)
117 self.win.move(y+1, 0)
124 self.win.move(y+1, 0)
130 self.win.move(y, x)
136 self.win.move(y+1, x)
138 self.win.move(y+1, self._end_of_line(y+1))
143 self.win.move(y-1, x)
145 self.win.move(y-1, self._end_of_line(y-1))
152 self.win.move(y, 0)