(cursor_offset, line)
| 179 | @edit_keys.on(config="right_key") |
| 180 | @edit_keys.on("<RIGHT>") |
| 181 | def right_arrow(cursor_offset, line): |
| 182 | return min(len(line), cursor_offset + 1), line |
| 183 | |
| 184 | |
| 185 | @edit_keys.on(config="beginning_of_line_key") |
no outgoing calls