diff options
author | nicm <nicm> | 2021-07-14 08:56:00 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-07-14 08:56:00 +0000 |
commit | 732c72c98e9b3aa6b1d33f1eab9fa16874d92e7d (patch) | |
tree | 2b44ffa46ba58750d7bbe3886133cbce08665763 /tmux.h | |
parent | 38c5788232e0e3abdd08ade55a9d4fbcda637df1 (diff) | |
download | rtmux-732c72c98e9b3aa6b1d33f1eab9fa16874d92e7d.tar.gz rtmux-732c72c98e9b3aa6b1d33f1eab9fa16874d92e7d.tar.bz2 rtmux-732c72c98e9b3aa6b1d33f1eab9fa16874d92e7d.zip |
Move default value for TERM into tmux.h.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -74,6 +74,9 @@ struct winlink; #ifndef TMUX_SOCK #define TMUX_SOCK "$TMUX_TMPDIR:" _PATH_TMP #endif +#ifndef TMUX_TERM +#define TMUX_TERM "screen" +#endif /* Minimum layout cell size, NOT including border lines. */ #define PANE_MINIMUM 1 |