mirror of
https://github.com/tmux/tmux.git
synced 2024-12-13 18:38:48 +00:00
Clarify error messages when setting options, from Thomas Adam.
This commit is contained in:
parent
064124cc5f
commit
a96a8a1aab
@ -128,8 +128,13 @@ cmd_set_option_exec(struct cmd *self, struct cmd_q *cmdq)
|
|||||||
oo = &global_w_options;
|
oo = &global_w_options;
|
||||||
else {
|
else {
|
||||||
wl = cmd_find_window(cmdq, args_get(args, 't'), NULL);
|
wl = cmd_find_window(cmdq, args_get(args, 't'), NULL);
|
||||||
if (wl == NULL)
|
if (wl == NULL) {
|
||||||
|
cmdq_error(cmdq,
|
||||||
|
"couldn't set '%s'%s", optstr,
|
||||||
|
(!args_has(args, 't') && !args_has(args,
|
||||||
|
'g')) ? " need target window or -g" : "");
|
||||||
return (CMD_RETURN_ERROR);
|
return (CMD_RETURN_ERROR);
|
||||||
|
}
|
||||||
oo = &wl->window->options;
|
oo = &wl->window->options;
|
||||||
}
|
}
|
||||||
} else if (table == session_options_table) {
|
} else if (table == session_options_table) {
|
||||||
@ -137,8 +142,13 @@ cmd_set_option_exec(struct cmd *self, struct cmd_q *cmdq)
|
|||||||
oo = &global_s_options;
|
oo = &global_s_options;
|
||||||
else {
|
else {
|
||||||
s = cmd_find_session(cmdq, args_get(args, 't'), 0);
|
s = cmd_find_session(cmdq, args_get(args, 't'), 0);
|
||||||
if (s == NULL)
|
if (s == NULL) {
|
||||||
|
cmdq_error(cmdq,
|
||||||
|
"couldn't set '%s'%s", optstr,
|
||||||
|
(!args_has(args, 't') && !args_has(args,
|
||||||
|
'g')) ? " need target session or -g" : "");
|
||||||
return (CMD_RETURN_ERROR);
|
return (CMD_RETURN_ERROR);
|
||||||
|
}
|
||||||
oo = &s->options;
|
oo = &s->options;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user