Add a choose-buffer command for easier use of the paste buffer stack.

This commit is contained in:
Nicholas Marriott
2010-06-21 21:44:09 +00:00
parent 386849edc1
commit ef7293379f
8 changed files with 200 additions and 22 deletions

2
tmux.h
View File

@ -1406,6 +1406,7 @@ int paste_free_top(struct paste_stack *);
int paste_free_index(struct paste_stack *, u_int);
void paste_add(struct paste_stack *, char *, size_t, u_int);
int paste_replace(struct paste_stack *, u_int, char *, size_t);
char *paste_print(struct paste_buffer *, size_t);
/* clock.c */
extern const char clock_table[14][5][5];
@ -1442,6 +1443,7 @@ extern const struct cmd_entry cmd_attach_session_entry;
extern const struct cmd_entry cmd_bind_key_entry;
extern const struct cmd_entry cmd_break_pane_entry;
extern const struct cmd_entry cmd_capture_pane_entry;
extern const struct cmd_entry cmd_choose_buffer_entry;
extern const struct cmd_entry cmd_choose_client_entry;
extern const struct cmd_entry cmd_choose_session_entry;
extern const struct cmd_entry cmd_choose_window_entry;