find-window command.

This commit is contained in:
Nicholas Marriott
2009-01-18 17:20:52 +00:00
parent 6384c60c10
commit 3efd1f5014
15 changed files with 296 additions and 25 deletions

6
tmux.h
View File

@ -1,4 +1,4 @@
/* $Id: tmux.h,v 1.238 2009-01-18 14:40:48 nicm Exp $ */
/* $Id: tmux.h,v 1.239 2009-01-18 17:20:52 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -1102,6 +1102,7 @@ extern const struct cmd_entry cmd_copy_mode_entry;
extern const struct cmd_entry cmd_delete_buffer_entry;
extern const struct cmd_entry cmd_detach_client_entry;
extern const struct cmd_entry cmd_down_pane_entry;
extern const struct cmd_entry cmd_find_window_entry;
extern const struct cmd_entry cmd_has_session_entry;
extern const struct cmd_entry cmd_kill_pane_entry;
extern const struct cmd_entry cmd_kill_server_entry;
@ -1488,6 +1489,9 @@ u_int utf8_combine(const u_char *);
void utf8_split(u_int, u_char *);
int utf8_width(u_int);
/* util.c */
char *section_string(char *, size_t, size_t, size_t);
/* buffer.c */
struct buffer *buffer_create(size_t);
void buffer_destroy(struct buffer *);