diff options
author | nicm <nicm> | 2019-06-13 19:46:00 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-06-13 19:46:00 +0000 |
commit | 3e72e98e3bdf3e814d6d20060247bb5f5dc859bb (patch) | |
tree | 8610823f2b11740c8079b86875bda970f901668a /tmux.h | |
parent | 7e6a26cc9d857ffc53fdb2395aa5413ff1865f9e (diff) | |
download | rtmux-3e72e98e3bdf3e814d6d20060247bb5f5dc859bb.tar.gz rtmux-3e72e98e3bdf3e814d6d20060247bb5f5dc859bb.tar.bz2 rtmux-3e72e98e3bdf3e814d6d20060247bb5f5dc859bb.zip |
Add regular expression support for the format search, match and
substitute modifiers.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -2396,7 +2396,8 @@ void window_pane_key(struct window_pane *, struct client *, struct session *, struct winlink *, key_code, struct mouse_event *); int window_pane_visible(struct window_pane *); -u_int window_pane_search(struct window_pane *, const char *); +u_int window_pane_search(struct window_pane *, const char *, int, + int); const char *window_printable_flags(struct winlink *); struct window_pane *window_pane_find_up(struct window_pane *); struct window_pane *window_pane_find_down(struct window_pane *); @@ -2631,4 +2632,7 @@ int style_is_default(struct style *); struct winlink *spawn_window(struct spawn_context *, char **); struct window_pane *spawn_pane(struct spawn_context *, char **); +/* regsub.c */ +char *regsub(const char *, const char *, const char *, int); + #endif /* TMUX_H */ |