diff options
author | nicm <nicm> | 2016-06-06 07:28:52 +0000 |
---|---|---|
committer | nicm <nicm> | 2016-06-06 07:28:52 +0000 |
commit | aba44380137b5d78f9033e46b5dc4a4f3ef1012a (patch) | |
tree | 0f2d961fbe2de021056b3b45078d8d0f10a6442b /tmux.h | |
parent | 00cf5fbde6d846a10804447204dd55e8c3a68dbd (diff) | |
download | rtmux-aba44380137b5d78f9033e46b5dc4a4f3ef1012a.tar.gz rtmux-aba44380137b5d78f9033e46b5dc4a4f3ef1012a.tar.bz2 rtmux-aba44380137b5d78f9033e46b5dc4a4f3ef1012a.zip |
Cache selected state so that cells going from selected to unselected are not
skipped, reported by Omar Sandoval.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -642,6 +642,7 @@ enum utf8_state { #define GRID_FLAG_EXTENDED 0x8 #define GRID_FLAG_FGRGB 0x10 #define GRID_FLAG_BGRGB 0x20 +#define GRID_FLAG_SELECTED 0x40 /* Grid line flags. */ #define GRID_LINE_WRAPPED 0x1 |