mirror of
https://github.com/tmux/tmux.git
synced 2025-04-27 15:48:54 +00:00
A few minor style nits.
This commit is contained in:
parent
d1b73be6e1
commit
ecb257f0ef
@ -19,7 +19,6 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
#include "tmux.h"
|
#include "tmux.h"
|
||||||
|
|
||||||
@ -30,10 +29,10 @@
|
|||||||
enum cmd_retval cmd_list_panes_exec(struct cmd *, struct cmd_q *);
|
enum cmd_retval cmd_list_panes_exec(struct cmd *, struct cmd_q *);
|
||||||
|
|
||||||
void cmd_list_panes_server(struct cmd *, struct cmd_q *);
|
void cmd_list_panes_server(struct cmd *, struct cmd_q *);
|
||||||
void cmd_list_panes_session(
|
void cmd_list_panes_session(struct cmd *, struct session *, struct cmd_q *,
|
||||||
struct cmd *, struct session *, struct cmd_q *, int);
|
int);
|
||||||
void cmd_list_panes_window(struct cmd *,
|
void cmd_list_panes_window(struct cmd *, struct session *, struct winlink *,
|
||||||
struct session *, struct winlink *, struct cmd_q *, int);
|
struct cmd_q *, int);
|
||||||
|
|
||||||
const struct cmd_entry cmd_list_panes_entry = {
|
const struct cmd_entry cmd_list_panes_entry = {
|
||||||
"list-panes", "lsp",
|
"list-panes", "lsp",
|
||||||
@ -77,8 +76,8 @@ cmd_list_panes_server(struct cmd *self, struct cmd_q *cmdq)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
cmd_list_panes_session(
|
cmd_list_panes_session(struct cmd *self, struct session *s, struct cmd_q *cmdq,
|
||||||
struct cmd *self, struct session *s, struct cmd_q *cmdq, int type)
|
int type)
|
||||||
{
|
{
|
||||||
struct winlink *wl;
|
struct winlink *wl;
|
||||||
|
|
||||||
@ -87,8 +86,8 @@ cmd_list_panes_session(
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
cmd_list_panes_window(struct cmd *self,
|
cmd_list_panes_window(struct cmd *self, struct session *s, struct winlink *wl,
|
||||||
struct session *s, struct winlink *wl, struct cmd_q *cmdq, int type)
|
struct cmd_q *cmdq, int type)
|
||||||
{
|
{
|
||||||
struct args *args = self->args;
|
struct args *args = self->args;
|
||||||
struct window_pane *wp;
|
struct window_pane *wp;
|
||||||
@ -115,9 +114,9 @@ cmd_list_panes_window(struct cmd *self,
|
|||||||
"#{?pane_active, (active),}#{?pane_dead, (dead),}";
|
"#{?pane_active, (active),}#{?pane_dead, (dead),}";
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
template = "#{session_name}:#{window_index}.#{pane_index}: "
|
template = "#{session_name}:#{window_index}."
|
||||||
"[#{pane_width}x#{pane_height}] [history "
|
"#{pane_index}: [#{pane_width}x#{pane_height}] "
|
||||||
"#{history_size}/#{history_limit}, "
|
"[history #{history_size}/#{history_limit}, "
|
||||||
"#{history_bytes} bytes] #{pane_id}"
|
"#{history_bytes} bytes] #{pane_id}"
|
||||||
"#{?pane_active, (active),}#{?pane_dead, (dead),}";
|
"#{?pane_active, (active),}#{?pane_dead, (dead),}";
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user