From 89c07dedd9159e45c81a490a68f953b569d72f48 Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Fri, 10 Sep 2010 13:36:17 +0000 Subject: Sync OpenBSD patchset 759: Add -n and -p flags to switch-client to move to the next and previous session (yes, it doesn't match window/pane, but so what, nor does switch-client). Based on a diff long ago from "edsouza". --- tmux.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 696c0acd..d32dba35 100644 --- a/tmux.h +++ b/tmux.h @@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.575 2010-09-07 19:32:58 nicm Exp $ */ +/* $Id: tmux.h,v 1.576 2010-09-10 13:36:17 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1963,6 +1963,8 @@ struct session *session_create(const char *, const char *, const char *, char **); void session_destroy(struct session *); int session_index(struct session *, u_int *); +struct session *session_next_session(struct session *); +struct session *session_previous_session(struct session *); struct winlink *session_new(struct session *, const char *, const char *, const char *, int, char **); struct winlink *session_attach( -- cgit