Print -l and -p when showing command, pointed out by Tiago Cunha.

pull/1/head
Nicholas Marriott 2009-08-25 14:53:22 +00:00
parent be16f79438
commit f949107a32
1 changed files with 6 additions and 0 deletions

View File

@ -237,6 +237,12 @@ cmd_split_window_print(struct cmd *self, char *buf, size_t len)
off += xsnprintf(buf + off, len - off, " -d");
if (off < len && data->flag_horizontal)
off += xsnprintf(buf + off, len - off, " -h");
if (off < len && data->size > 0)
off += xsnprintf(buf + off, len - off, " -l %d", data->size);
if (off < len && data->percentage > 0) {
off += xsnprintf(
buf + off, len - off, " -p %d", data->percentage);
}
if (off < len && data->target != NULL)
off += cmd_prarg(buf + off, len - off, " -t ", data->target);
if (off < len && data->cmd != NULL)