diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-18 17:20:52 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-18 17:20:52 +0000 |
commit | 3efd1f5014f889d276298e0b7411169ff50114bc (patch) | |
tree | 5dd65f55e9eeac4f7cfdfe27f2c10a40d9403c6a /tmux.h | |
parent | 6384c60c108e4d2a9f4489407f9426539a1e6ce3 (diff) | |
download | rtmux-3efd1f5014f889d276298e0b7411169ff50114bc.tar.gz rtmux-3efd1f5014f889d276298e0b7411169ff50114bc.tar.bz2 rtmux-3efd1f5014f889d276298e0b7411169ff50114bc.zip |
find-window command.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 *); |