diff options
author | Thomas Adam <thomas@xteddy.org> | 2021-04-05 10:01:19 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2021-04-05 10:01:19 +0100 |
commit | 22ccae1c9db19c610ea78052b221ad1e1876bf69 (patch) | |
tree | 4c92a36597f95de5fbe13e40c585fede7f50bdf8 /tmux.h | |
parent | b307fc8cd5de31fc7038c9899328ca620f85c25a (diff) | |
parent | 5900b164a47689620db962e69f6d040bb82885b0 (diff) | |
download | rtmux-22ccae1c9db19c610ea78052b221ad1e1876bf69.tar.gz rtmux-22ccae1c9db19c610ea78052b221ad1e1876bf69.tar.bz2 rtmux-22ccae1c9db19c610ea78052b221ad1e1876bf69.zip |
Merge branch 'obsd-master' into master
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2584,7 +2584,7 @@ void grid_reader_get_cursor(struct grid_reader *, u_int *, u_int *); u_int grid_reader_line_length(struct grid_reader *); int grid_reader_in_set(struct grid_reader *, const char *); void grid_reader_cursor_right(struct grid_reader *, int, int); -void grid_reader_cursor_left(struct grid_reader *); +void grid_reader_cursor_left(struct grid_reader *, int); void grid_reader_cursor_down(struct grid_reader *); void grid_reader_cursor_up(struct grid_reader *); void grid_reader_cursor_start_of_line(struct grid_reader *, int); @@ -2597,6 +2597,7 @@ int grid_reader_cursor_jump(struct grid_reader *, const struct utf8_data *); int grid_reader_cursor_jump_back(struct grid_reader *, const struct utf8_data *); +void grid_reader_cursor_back_to_indentation(struct grid_reader *); /* grid-view.c */ void grid_view_get_cell(struct grid *, u_int, u_int, struct grid_cell *); |