Skip to content

Commit

Permalink
Move template defines back into .c files.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicm committed Oct 20, 2014
1 parent 900f6fc commit 4c42381
Show file tree
Hide file tree
Showing 14 changed files with 80 additions and 74 deletions.
2 changes: 2 additions & 0 deletions cmd-break-pane.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
* Break pane off into a window.
*/

#define BREAK_PANE_TEMPLATE "#{session_name}:#{window_index}.#{pane_index}"

enum cmd_retval cmd_break_pane_exec(struct cmd *, struct cmd_q *);

const struct cmd_entry cmd_break_pane_entry = {
Expand Down
3 changes: 3 additions & 0 deletions cmd-choose-buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
* Enter choice mode to choose a buffer.
*/

#define CHOOSE_BUFFER_TEMPLATE \
"#{buffer_name}: #{buffer_size} bytes: #{buffer_sample}"

enum cmd_retval cmd_choose_buffer_exec(struct cmd *, struct cmd_q *);

const struct cmd_entry cmd_choose_buffer_entry = {
Expand Down
6 changes: 6 additions & 0 deletions cmd-choose-client.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@
* Enter choice mode to choose a client.
*/

#define CHOOSE_CLIENT_TEMPLATE \
"#{client_tty}: #{session_name} " \
"[#{client_width}x#{client_height} #{client_termname}]" \
"#{?client_utf8, (utf8),}#{?client_readonly, (ro),} " \
"(last used #{client_activity_string})"

enum cmd_retval cmd_choose_client_exec(struct cmd *, struct cmd_q *);

void cmd_choose_client_callback(struct window_choose_data *);
Expand Down
9 changes: 9 additions & 0 deletions cmd-choose-tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@
* Enter choice mode to choose a session and/or window.
*/

#define CHOOSE_TREE_SESSION_TEMPLATE \
"#{session_name}: #{session_windows} windows" \
"#{?session_grouped, (group ,}" \
"#{session_group}#{?session_grouped,),}" \
"#{?session_attached, (attached),}"
#define CHOOSE_TREE_WINDOW_TEMPLATE \
"#{window_index}: #{window_name}#{window_flags} " \
"\"#{pane_title}\""

enum cmd_retval cmd_choose_tree_exec(struct cmd *, struct cmd_q *);

const struct cmd_entry cmd_choose_tree_entry = {
Expand Down
5 changes: 5 additions & 0 deletions cmd-display-message.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
* Displays a message in the status line.
*/

#define DISPLAY_MESSAGE_TEMPLATE \
"[#{session_name}] #{window_index}:" \
"#{window_name}, current pane #{pane_index} " \
"- (%H:%M %d-%b-%y)"

enum cmd_retval cmd_display_message_exec(struct cmd *, struct cmd_q *);

const struct cmd_entry cmd_display_message_entry = {
Expand Down
5 changes: 5 additions & 0 deletions cmd-find-window.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@
* Find window containing text.
*/

#define FIND_WINDOW_TEMPLATE \
"#{window_index}: #{window_name} " \
"[#{window_width}x#{window_height}] " \
"(#{window_panes} panes) #{window_find_matches}"

enum cmd_retval cmd_find_window_exec(struct cmd *, struct cmd_q *);

void cmd_find_window_callback(struct window_choose_data *);
Expand Down
3 changes: 3 additions & 0 deletions cmd-list-buffers.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
* List paste buffers.
*/

#define LIST_BUFFERS_TEMPLATE \
"#{buffer_name}: #{buffer_size} bytes: \"#{buffer_sample}\""

enum cmd_retval cmd_list_buffers_exec(struct cmd *, struct cmd_q *);

const struct cmd_entry cmd_list_buffers_entry = {
Expand Down
5 changes: 5 additions & 0 deletions cmd-list-clients.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@
* List all clients.
*/

#define LIST_CLIENTS_TEMPLATE \
"#{client_tty}: #{session_name} " \
"[#{client_width}x#{client_height} #{client_termname}]" \
"#{?client_utf8, (utf8),} #{?client_readonly, (ro),}"

enum cmd_retval cmd_list_clients_exec(struct cmd *, struct cmd_q *);

const struct cmd_entry cmd_list_clients_entry = {
Expand Down
8 changes: 8 additions & 0 deletions cmd-list-sessions.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@
* List all sessions.
*/

#define LIST_SESSIONS_TEMPLATE \
"#{session_name}: #{session_windows} windows " \
"(created #{session_created_string}) " \
"[#{session_width}x#{session_height}]" \
"#{?session_grouped, (group ,}" \
"#{session_group}#{?session_grouped,),}" \
"#{?session_attached, (attached),}"

enum cmd_retval cmd_list_sessions_exec(struct cmd *, struct cmd_q *);

const struct cmd_entry cmd_list_sessions_entry = {
Expand Down
16 changes: 14 additions & 2 deletions cmd-list-windows.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,23 @@
* List windows on given session.
*/

#define LIST_WINDOWS_TEMPLATE \
"#{window_index}: #{window_name}#{window_flags} " \
"(#{window_panes} panes) " \
"[#{window_width}x#{window_height}] " \
"[layout #{window_layout}] #{window_id}" \
"#{?window_active, (active),}";
#define LIST_WINDOWS_WITH_SESSION_TEMPLATE \
"#{session_name}:" \
"#{window_index}: #{window_name}#{window_flags} " \
"(#{window_panes} panes) " \
"[#{window_width}x#{window_height}] "

enum cmd_retval cmd_list_windows_exec(struct cmd *, struct cmd_q *);

void cmd_list_windows_server(struct cmd *, struct cmd_q *);
void cmd_list_windows_session(
struct cmd *, struct session *, struct cmd_q *, int);
void cmd_list_windows_session(struct cmd *, struct session *,
struct cmd_q *, int);

const struct cmd_entry cmd_list_windows_entry = {
"list-windows", "lsw",
Expand Down
16 changes: 16 additions & 0 deletions cmd-new-session.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
* Create a new session and attach to the current terminal unless -d is given.
*/

#define NEW_SESSION_TEMPLATE "#{session_name}:"

enum cmd_retval cmd_new_session_exec(struct cmd *, struct cmd_q *);

const struct cmd_entry cmd_new_session_entry = {
Expand All @@ -43,6 +45,14 @@ const struct cmd_entry cmd_new_session_entry = {
cmd_new_session_exec
};

const struct cmd_entry cmd_has_session_entry = {
"has-session", "has",
"t:", 0, 0,
CMD_TARGET_SESSION_USAGE,
0,
cmd_new_session_exec
};

enum cmd_retval
cmd_new_session_exec(struct cmd *self, struct cmd_q *cmdq)
{
Expand All @@ -61,6 +71,12 @@ cmd_new_session_exec(struct cmd *self, struct cmd_q *cmdq)
struct format_tree *ft;
struct environ_entry *envent;

if (self->entry == &cmd_has_session_entry) {
if (cmd_find_session(cmdq, args_get(args, 't'), 0) == NULL)
return (CMD_RETURN_ERROR);
return (CMD_RETURN_NORMAL);
}

if (args_has(args, 't') && (args->argc != 0 || args_has(args, 'n'))) {
cmdq_error(cmdq, "command or window name given with target");
return (CMD_RETURN_ERROR);
Expand Down
2 changes: 2 additions & 0 deletions cmd-new-window.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
* Create a new window.
*/

#define NEW_WINDOW_TEMPLATE "#{session_name}:#{window_index}.#{pane_index}"

enum cmd_retval cmd_new_window_exec(struct cmd *, struct cmd_q *);

const struct cmd_entry cmd_new_window_entry = {
Expand Down
2 changes: 2 additions & 0 deletions cmd-split-window.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
* Split a window (add a new pane).
*/

#define SPLIT_WINDOW_TEMPLATE "#{session_name}:#{window_index}.#{pane_index}"

enum cmd_retval cmd_split_window_exec(struct cmd *, struct cmd_q *);

const struct cmd_entry cmd_split_window_entry = {
Expand Down
72 changes: 0 additions & 72 deletions tmux.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,78 +80,6 @@ extern char **environ;
#define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
#endif

/* Default template for choose-buffer. */
#define CHOOSE_BUFFER_TEMPLATE \
"#{buffer_name}: #{buffer_size} bytes: #{buffer_sample}"

/* Default template for choose-client. */
#define CHOOSE_CLIENT_TEMPLATE \
"#{client_tty}: #{session_name} " \
"[#{client_width}x#{client_height} #{client_termname}]" \
"#{?client_utf8, (utf8),}#{?client_readonly, (ro),} " \
"(last used #{client_activity_string})"

/* Default templates for choose-tree. */
#define CHOOSE_TREE_SESSION_TEMPLATE \
"#{session_name}: #{session_windows} windows" \
"#{?session_grouped, (group ,}" \
"#{session_group}#{?session_grouped,),}" \
"#{?session_attached, (attached),}"
#define CHOOSE_TREE_WINDOW_TEMPLATE \
"#{window_index}: #{window_name}#{window_flags} " \
"\"#{pane_title}\""

/* Default template for display-message. */
#define DISPLAY_MESSAGE_TEMPLATE \
"[#{session_name}] #{window_index}:" \
"#{window_name}, current pane #{pane_index} " \
"- (%H:%M %d-%b-%y)"

/* Default template for find-window. */
#define FIND_WINDOW_TEMPLATE \
"#{window_index}: #{window_name} " \
"[#{window_width}x#{window_height}] " \
"(#{window_panes} panes) #{window_find_matches}"

/* Default template for list-buffers. */
#define LIST_BUFFERS_TEMPLATE \
"#{buffer_name}: #{buffer_size} bytes: " \
"\"#{buffer_sample}\""

/* Default template for list-clients. */
#define LIST_CLIENTS_TEMPLATE \
"#{client_tty}: #{session_name} " \
"[#{client_width}x#{client_height} #{client_termname}]" \
"#{?client_utf8, (utf8),} #{?client_readonly, (ro),}"

/* Default template for list-sessions. */
#define LIST_SESSIONS_TEMPLATE \
"#{session_name}: #{session_windows} windows " \
"(created #{session_created_string}) " \
"[#{session_width}x#{session_height}]" \
"#{?session_grouped, (group ,}" \
"#{session_group}#{?session_grouped,),}" \
"#{?session_attached, (attached),}"

/* Default templates for list-windows. */
#define LIST_WINDOWS_TEMPLATE \
"#{window_index}: #{window_name}#{window_flags} " \
"(#{window_panes} panes) " \
"[#{window_width}x#{window_height}] " \
"[layout #{window_layout}] #{window_id}" \
"#{?window_active, (active),}";
#define LIST_WINDOWS_WITH_SESSION_TEMPLATE \
"#{session_name}:" \
"#{window_index}: #{window_name}#{window_flags} " \
"(#{window_panes} panes) " \
"[#{window_width}x#{window_height}] "

/* Default templates for break-pane, new-window and split-window. */
#define BREAK_PANE_TEMPLATE "#{session_name}:#{window_index}.#{pane_index}"
#define NEW_SESSION_TEMPLATE "#{session_name}:"
#define NEW_WINDOW_TEMPLATE BREAK_PANE_TEMPLATE
#define SPLIT_WINDOW_TEMPLATE BREAK_PANE_TEMPLATE

/* Bell option values. */
#define BELL_NONE 0
#define BELL_ANY 1
Expand Down

0 comments on commit 4c42381

Please sign in to comment.