mirror of
https://github.com/tmux/tmux.git
synced 2025-01-09 09:38:48 +00:00
Merge branch 'master' into sixel
This commit is contained in:
commit
c630a56a62
@ -316,7 +316,7 @@ static struct input_key_entry input_key_defaults[] = {
|
|||||||
.data = "\033[9;5u"
|
.data = "\033[9;5u"
|
||||||
},
|
},
|
||||||
{ .key = '\011'|KEYC_CTRL|KEYC_SHIFT,
|
{ .key = '\011'|KEYC_CTRL|KEYC_SHIFT,
|
||||||
.data = "\011"
|
.data = "\033[Z"
|
||||||
},
|
},
|
||||||
{ .key = '\011'|KEYC_CTRL|KEYC_SHIFT|KEYC_EXTENDED,
|
{ .key = '\011'|KEYC_CTRL|KEYC_SHIFT|KEYC_EXTENDED,
|
||||||
.data = "\033[1;5Z"
|
.data = "\033[1;5Z"
|
||||||
|
22
tmux.1
22
tmux.1
@ -23,7 +23,7 @@
|
|||||||
.Sh SYNOPSIS
|
.Sh SYNOPSIS
|
||||||
.Nm tmux
|
.Nm tmux
|
||||||
.Bk -words
|
.Bk -words
|
||||||
.Op Fl 2CDluvV
|
.Op Fl 2CDlNuVv
|
||||||
.Op Fl c Ar shell-command
|
.Op Fl c Ar shell-command
|
||||||
.Op Fl f Ar file
|
.Op Fl f Ar file
|
||||||
.Op Fl L Ar socket-name
|
.Op Fl L Ar socket-name
|
||||||
@ -206,6 +206,12 @@ If
|
|||||||
is specified, the default socket directory is not used and any
|
is specified, the default socket directory is not used and any
|
||||||
.Fl L
|
.Fl L
|
||||||
flag is ignored.
|
flag is ignored.
|
||||||
|
.It Fl T Ar features
|
||||||
|
Set terminal features for the client.
|
||||||
|
This is a comma-separated list of features.
|
||||||
|
See the
|
||||||
|
.Ic terminal-features
|
||||||
|
option.
|
||||||
.It Fl u
|
.It Fl u
|
||||||
Write UTF-8 output to the terminal even if the first environment
|
Write UTF-8 output to the terminal even if the first environment
|
||||||
variable of
|
variable of
|
||||||
@ -217,12 +223,10 @@ that is set does not contain
|
|||||||
.Qq UTF-8
|
.Qq UTF-8
|
||||||
or
|
or
|
||||||
.Qq UTF8 .
|
.Qq UTF8 .
|
||||||
.It Fl T Ar features
|
.It Fl V
|
||||||
Set terminal features for the client.
|
Report the
|
||||||
This is a comma-separated list of features.
|
.Nm
|
||||||
See the
|
version.
|
||||||
.Ic terminal-features
|
|
||||||
option.
|
|
||||||
.It Fl v
|
.It Fl v
|
||||||
Request verbose logging.
|
Request verbose logging.
|
||||||
Log messages will be saved into
|
Log messages will be saved into
|
||||||
@ -247,10 +251,6 @@ signal may be sent to the
|
|||||||
server process to toggle logging between on (as if
|
server process to toggle logging between on (as if
|
||||||
.Fl v
|
.Fl v
|
||||||
was given) and off.
|
was given) and off.
|
||||||
.It Fl V
|
|
||||||
Report the
|
|
||||||
.Nm
|
|
||||||
version.
|
|
||||||
.It Ar command Op Ar flags
|
.It Ar command Op Ar flags
|
||||||
This specifies one of a set of commands used to control
|
This specifies one of a set of commands used to control
|
||||||
.Nm ,
|
.Nm ,
|
||||||
|
2
tmux.c
2
tmux.c
@ -53,7 +53,7 @@ static __dead void
|
|||||||
usage(void)
|
usage(void)
|
||||||
{
|
{
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"usage: %s [-2CDlNuvV] [-c shell-command] [-f file] [-L socket-name]\n"
|
"usage: %s [-2CDlNuVv] [-c shell-command] [-f file] [-L socket-name]\n"
|
||||||
" [-S socket-path] [-T features] [command [flags]]\n",
|
" [-S socket-path] [-T features] [command [flags]]\n",
|
||||||
getprogname());
|
getprogname());
|
||||||
exit(1);
|
exit(1);
|
||||||
|
Loading…
Reference in New Issue
Block a user