diff options
author | nicm <nicm> | 2019-06-26 13:03:47 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-06-26 13:03:47 +0000 |
commit | d83f356218fc9144735667e39c9553bcf905d10b (patch) | |
tree | a668906a02078505855f69d1cb6c73bcff21f6db /tmux.h | |
parent | 20b938bcb18b8ae8b0535a1bcf8e7e1670a830bc (diff) | |
download | rtmux-d83f356218fc9144735667e39c9553bcf905d10b.tar.gz rtmux-d83f356218fc9144735667e39c9553bcf905d10b.tar.bz2 rtmux-d83f356218fc9144735667e39c9553bcf905d10b.zip |
Add #define for the pane status line option position numbers.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -955,6 +955,11 @@ TAILQ_HEAD(winlink_stack, winlink); #define WINDOW_SIZE_SMALLEST 1 #define WINDOW_SIZE_MANUAL 2 +/* Pane border status option. */ +#define PANE_STATUS_OFF 0 +#define PANE_STATUS_TOP 1 +#define PANE_STATUS_BOTTOM 2 + /* Layout direction. */ enum layout_type { LAYOUT_LEFTRIGHT, |