diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-02-15 20:34:50 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-02-15 20:34:50 +0100 |
commit | 7103a102bb66ac3faaca97ccd42e7aabe8c5c201 (patch) | |
tree | 339227b9f12fe44491eb8f49f7ef2e54d3c5e8df /src/tabs.py | |
parent | 3302c730af597aecee27e2bfb3a76b75884e919d (diff) | |
download | poezio-7103a102bb66ac3faaca97ccd42e7aabe8c5c201.tar.gz poezio-7103a102bb66ac3faaca97ccd42e7aabe8c5c201.tar.bz2 poezio-7103a102bb66ac3faaca97ccd42e7aabe8c5c201.tar.xz poezio-7103a102bb66ac3faaca97ccd42e7aabe8c5c201.zip |
Ctrl+up and down go to the next/previous group in the roster
Diffstat (limited to 'src/tabs.py')
-rw-r--r-- | src/tabs.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tabs.py b/src/tabs.py index 422bc983..9beb4499 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -812,6 +812,8 @@ class RosterInfoTab(Tab): self.key_func["KEY_DOWN"] = self.move_cursor_down self.key_func["M-u"] = self.move_cursor_to_next_group self.key_func["M-y"] = self.move_cursor_to_prev_group + self.key_func["M-[1;5B"] = self.move_cursor_to_next_group + self.key_func["M-[1;5A"] = self.move_cursor_to_prev_group self.key_func["o"] = self.toggle_offline_show self.key_func["s"] = self.start_search self.key_func["S"] = self.start_search_slow |