Enhancing the way we handle refocus when a terminal is closed
* Fixes LP#234905 : Refocus on term close * Added new conf parameter: focus_on_close * Default to auto, possible values: auto, next, prev * When auto, if the term parent is a gtk.Paned, the focus is given to the sibling rather than the previous term which could be in another tab * Added entry to doc/terminatorrc.5
This commit is contained in:
parent
47e51e7855
commit
4a74f74897
|
@ -82,6 +82,13 @@ Default value: \fB100\fR
|
|||
Sets what type of mouse events should determine terminal focus. Can be "sloppy" or "click". "mouse" is also interpreted as "sloppy".
|
||||
Default value: \fBsloppy\fR
|
||||
.TP
|
||||
.B focus_on_close
|
||||
Sets which terminal should get the focus when another terminal is closed.
|
||||
Values can be "prev", "next" or "auto".
|
||||
Using "auto", if the closed terminal is within a splitted window, the focus will be on the sibling terminal
|
||||
rather than another tab.
|
||||
Default value: \fBauto\fR
|
||||
.TP
|
||||
.B exit_action
|
||||
Possible values are "close" to close the terminal, and "restart" to restart the command.
|
||||
Default value: \fBclose\fR
|
||||
|
|
25
terminator
25
terminator
|
@ -1302,7 +1302,7 @@ class Terminator:
|
|||
Returns True on success, False on failure"""
|
||||
parent = widget.get_parent ()
|
||||
sibling = None
|
||||
|
||||
focus_on_close = 'prev'
|
||||
if isinstance (parent, gtk.Window):
|
||||
# We are the only term
|
||||
if not self.on_delete_event (parent, gtk.gdk.Event (gtk.gdk.DELETE)):
|
||||
|
@ -1316,6 +1316,7 @@ class Terminator:
|
|||
# Discover sibling while all objects exist
|
||||
if widget == parent.get_child1 ():
|
||||
sibling = parent.get_child2 ()
|
||||
focus_on_close = 'next'
|
||||
if widget == parent.get_child2 ():
|
||||
sibling = parent.get_child1 ()
|
||||
|
||||
|
@ -1349,15 +1350,7 @@ class Terminator:
|
|||
sibling._titlebox.hide()
|
||||
|
||||
self.term_list.remove (widget)
|
||||
|
||||
if not isinstance (sibling, gtk.Paned):
|
||||
for term in self.term_list:
|
||||
if term == sibling:
|
||||
term._vte.grab_focus ()
|
||||
break
|
||||
else:
|
||||
if index == 0: index = 1
|
||||
self.term_list[index - 1]._vte.grab_focus ()
|
||||
|
||||
elif isinstance (parent, gtk.Notebook):
|
||||
parent.remove(widget)
|
||||
nbpages = parent.get_n_pages()
|
||||
|
@ -1380,9 +1373,15 @@ class Terminator:
|
|||
if isinstance(sibling, TerminatorTerm) and sibling.conf.titlebars and sibling.conf.extreme_tabs:
|
||||
sibling._titlebox.show()
|
||||
parent.destroy()
|
||||
if index == 0: index = 1
|
||||
self.term_list[index - 1]._vte.grab_focus ()
|
||||
self._set_current_notebook_page_recursive(self.term_list[index - 1])
|
||||
if self.conf.focus_on_close == 'prev' or ( self.conf.focus_on_close == 'auto' and focus_on_close == 'prev'):
|
||||
if index == 0: index = 1
|
||||
self.term_list[index - 1]._vte.grab_focus ()
|
||||
self._set_current_notebook_page_recursive(self.term_list[index - 1])
|
||||
elif self.conf.focus_on_close == 'next' or ( self.conf.focus_on_close == 'auto' and focus_on_close == 'next'):
|
||||
if index == len(self.term_list): index = index - 1
|
||||
self.term_list[index]._vte.grab_focus ()
|
||||
self._set_current_notebook_page_recursive(self.term_list[index])
|
||||
|
||||
if len(self.term_list) == 1:
|
||||
self.term_list[0]._titlebox.hide()
|
||||
|
||||
|
|
|
@ -119,6 +119,7 @@ class TerminatorConfValuestore:
|
|||
'borderless' : False,
|
||||
'maximise' : False,
|
||||
'handle_size' : -1,
|
||||
'focus_on_close' : 'auto',
|
||||
}
|
||||
|
||||
def __getattr__ (self, keyname):
|
||||
|
|
Loading…
Reference in New Issue