mirror of
https://github.com/tmux/tmux.git
synced 2024-12-25 02:48:47 +00:00
Add an option allow-set-title to forbid applications from changing the
pane title, from someone in GitHub issue 3930.
This commit is contained in:
parent
c62a9ca16b
commit
553d4cba79
4
input.c
4
input.c
@ -2341,7 +2341,9 @@ input_exit_osc(struct input_ctx *ictx)
|
|||||||
switch (option) {
|
switch (option) {
|
||||||
case 0:
|
case 0:
|
||||||
case 2:
|
case 2:
|
||||||
if (screen_set_title(sctx->s, p) && wp != NULL) {
|
if (wp != NULL &&
|
||||||
|
options_get_number(wp->options, "allow-set-title") &&
|
||||||
|
screen_set_title(sctx->s, p)) {
|
||||||
notify_pane("pane-title-changed", wp);
|
notify_pane("pane-title-changed", wp);
|
||||||
server_redraw_window_borders(wp->window);
|
server_redraw_window_borders(wp->window);
|
||||||
server_status_window(wp->window);
|
server_status_window(wp->window);
|
||||||
|
@ -876,6 +876,14 @@ const struct options_table_entry options_table[] = {
|
|||||||
"to rename windows."
|
"to rename windows."
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{ .name = "allow-set-title",
|
||||||
|
.type = OPTIONS_TABLE_FLAG,
|
||||||
|
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
|
||||||
|
.default_num = 1,
|
||||||
|
.text = "Whether applications are allowed to use the escape sequence "
|
||||||
|
"to set the pane title."
|
||||||
|
},
|
||||||
|
|
||||||
{ .name = "alternate-screen",
|
{ .name = "alternate-screen",
|
||||||
.type = OPTIONS_TABLE_FLAG,
|
.type = OPTIONS_TABLE_FLAG,
|
||||||
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
|
.scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
|
||||||
|
6
tmux.1
6
tmux.1
@ -4750,6 +4750,12 @@ they will be allowed even if the pane is invisible.
|
|||||||
Allow programs in the pane to change the window name using a terminal escape
|
Allow programs in the pane to change the window name using a terminal escape
|
||||||
sequence (\eek...\ee\e\e).
|
sequence (\eek...\ee\e\e).
|
||||||
.Pp
|
.Pp
|
||||||
|
.It Xo Ic allow-set-title
|
||||||
|
.Op Ic on | off
|
||||||
|
.Xc
|
||||||
|
Allow programs in the pane to change the title using the terminal escape
|
||||||
|
sequences (\ee]2;...\ee\e\e or \ee]0;...\ee\e\e).
|
||||||
|
.Pp
|
||||||
.It Xo Ic alternate-screen
|
.It Xo Ic alternate-screen
|
||||||
.Op Ic on | off
|
.Op Ic on | off
|
||||||
.Xc
|
.Xc
|
||||||
|
2
tmux.h
2
tmux.h
@ -850,7 +850,7 @@ struct screen_sel;
|
|||||||
struct screen_titles;
|
struct screen_titles;
|
||||||
struct screen {
|
struct screen {
|
||||||
char *title;
|
char *title;
|
||||||
char *path;
|
char *path;
|
||||||
struct screen_titles *titles;
|
struct screen_titles *titles;
|
||||||
|
|
||||||
struct grid *grid; /* grid data */
|
struct grid *grid; /* grid data */
|
||||||
|
Loading…
Reference in New Issue
Block a user