mirror of
https://github.com/tmux/tmux.git
synced 2025-01-07 16:28:48 +00:00
Shorten some long lines.
This commit is contained in:
parent
a9bf5367da
commit
4ea3370316
@ -332,21 +332,26 @@ tty_default_features(int *feat, const char *name, u_int version)
|
|||||||
u_int version;
|
u_int version;
|
||||||
const char *features;
|
const char *features;
|
||||||
} table[] = {
|
} table[] = {
|
||||||
#define TTY_FEATURES_BASE_MODERN_XTERM "256,RGB,bpaste,clipboard,strikethrough,title"
|
#define TTY_FEATURES_BASE_MODERN_XTERM \
|
||||||
|
"256,RGB,bpaste,clipboard,strikethrough,title"
|
||||||
{ .name = "mintty",
|
{ .name = "mintty",
|
||||||
.features = TTY_FEATURES_BASE_MODERN_XTERM ",ccolour,cstyle,extkeys,margins,overline"
|
.features = TTY_FEATURES_BASE_MODERN_XTERM
|
||||||
|
",ccolour,cstyle,extkeys,margins,overline"
|
||||||
},
|
},
|
||||||
{ .name = "tmux",
|
{ .name = "tmux",
|
||||||
.features = TTY_FEATURES_BASE_MODERN_XTERM ",ccolour,cstyle,focus,overline,usstyle"
|
.features = TTY_FEATURES_BASE_MODERN_XTERM
|
||||||
|
",ccolour,cstyle,focus,overline,usstyle"
|
||||||
},
|
},
|
||||||
{ .name = "rxvt-unicode",
|
{ .name = "rxvt-unicode",
|
||||||
.features = "256,bpaste,ccolour,cstyle,title"
|
.features = "256,bpaste,ccolour,cstyle,title"
|
||||||
},
|
},
|
||||||
{ .name = "iTerm2",
|
{ .name = "iTerm2",
|
||||||
.features = TTY_FEATURES_BASE_MODERN_XTERM ",cstyle,extkeys,margins,sync"
|
.features = TTY_FEATURES_BASE_MODERN_XTERM
|
||||||
|
",cstyle,extkeys,margins,sync"
|
||||||
},
|
},
|
||||||
{ .name = "XTerm",
|
{ .name = "XTerm",
|
||||||
.features = TTY_FEATURES_BASE_MODERN_XTERM ",ccolour,cstyle,extkeys,focus,margins,rectfill"
|
.features = TTY_FEATURES_BASE_MODERN_XTERM
|
||||||
|
",ccolour,cstyle,extkeys,focus,margins,rectfill"
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
u_int i;
|
u_int i;
|
||||||
|
Loading…
Reference in New Issue
Block a user