diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-12-09 16:43:23 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-12-09 16:43:23 +0100 |
commit | 2e25595aec8c80cb2979acba50604345b79c1170 (patch) | |
tree | 16b7855b1e363ac1ef58fbc8e62e8ff368ddcf35 /src/core | |
parent | ed7fe693b4e2a4354a7db58d03bc74f155f1ad71 (diff) | |
download | poezio-2e25595aec8c80cb2979acba50604345b79c1170.tar.gz poezio-2e25595aec8c80cb2979acba50604345b79c1170.tar.bz2 poezio-2e25595aec8c80cb2979acba50604345b79c1170.tar.xz poezio-2e25595aec8c80cb2979acba50604345b79c1170.zip |
Introduce the go_to_previous_tab_on_alt_number option
fix #2841
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.py b/src/core/core.py index f6b973ec..8d7f7fcf 100644 --- a/src/core/core.py +++ b/src/core/core.py @@ -592,7 +592,7 @@ class Core(object): except ValueError: pass else: - if self.current_tab().nb == nb: + if self.current_tab().nb == nb and config.get('go_to_previous_tab_on_alt_number'): self.go_to_previous_tab() else: self.command_win('%d' % nb) |