diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tabs.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py index bacef726..f227e2fc 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -954,6 +954,8 @@ class MucListTab(Tab): self.key_func["/"] = self.on_slash self.key_func['j'] = self.join_selected self.key_func['J'] = self.join_selected_no_focus + self.key_func['^J'] = self.join_selected + self.key_func['^M'] = self.join_selected self.resize() def refresh(self, tabs, informations, roster): @@ -1030,7 +1032,6 @@ class MucListTab(Tab): def get_color_state(self): return self._color_state - def diffmatch(search, string): """ Use difflib and a loop to check if search_pattern can |