mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Fix word navigation on lines with tabs, from Alexander Arch.
This commit is contained in:
3
tmux.h
3
tmux.h
@ -605,7 +605,7 @@ enum tty_code_code {
|
||||
};
|
||||
|
||||
/* Character classes. */
|
||||
#define WHITESPACE " "
|
||||
#define WHITESPACE "\t "
|
||||
|
||||
/* Mode keys. */
|
||||
#define MODEKEY_EMACS 0
|
||||
@ -2944,6 +2944,7 @@ void grid_reflow(struct grid *, u_int);
|
||||
void grid_wrap_position(struct grid *, u_int, u_int, u_int *, u_int *);
|
||||
void grid_unwrap_position(struct grid *, u_int *, u_int *, u_int, u_int);
|
||||
u_int grid_line_length(struct grid *, u_int);
|
||||
int grid_in_set(struct grid *, u_int, u_int, const char *);
|
||||
|
||||
/* grid-reader.c */
|
||||
void grid_reader_start(struct grid_reader *, struct grid *, u_int, u_int);
|
||||
|
Reference in New Issue
Block a user