--- terminator-0.11/terminatorlib/terminator.py 2008-09-19 19:53:18.000000000 +0200 +++ terminator-0.11-new/terminatorlib/terminator.py 2008-09-21 00:50:56.000000000 +0200 @@ -864,6 +864,13 @@ notebook.next_page() return + def set_current_tab(self, term, tab_index): + notebook = self.get_first_parent_notebook(term) + if notebook and tab_index < notebook.get_n_pages(): + notebook.set_current_page(tab_index) + return True + return False + def move_tab(self, term, direction): dbg("moving to direction %s" % direction) (notebook, page) = self.get_first_notebook_page(term)