Merge branch 'arza-zara-patch-1'

This commit is contained in:
Florian Bruhin 2016-09-01 22:04:33 +02:00
commit cd975f3f07
4 changed files with 5 additions and 1 deletions

View File

@ -140,6 +140,7 @@ Fixed
- `:tab-detach` now fails correctly when there's only one tab open.
- Various small issues with the command completion
- The tabbar now displays correctly with the Adwaita Qt theme
- The default `sk` keybinding now sets the commandline to `:bind` correctly
v0.8.3 (unreleased)
-------------------

View File

@ -214,6 +214,7 @@ Contributors, sorted by the number of commits in descending order:
* Ismail
* Edgar Hipp
* Daryl Finlay
* arza
* adam
* Samir Benmendil
* Regina Hug

View File

@ -1556,7 +1556,7 @@ KEY_DATA = collections.OrderedDict([
('save', ['sf']),
('set-cmd-text -s :set', ['ss']),
('set-cmd-text -s :set -t', ['sl']),
('set-cmd-text -s :set keybind', ['sk']),
('set-cmd-text -s :bind', ['sk']),
('zoom-out', ['-']),
('zoom-in', ['+']),
('zoom', ['=']),
@ -1735,4 +1735,5 @@ CHANGED_KEY_COMMANDS = [
(re.compile(r'^set-cmd-text -s :search$'), r'set-cmd-text /'),
(re.compile(r'^set-cmd-text -s :search -r$'), r'set-cmd-text ?'),
(re.compile(r'^set-cmd-text -s :$'), r'set-cmd-text :'),
(re.compile(r'^set-cmd-text -s :set keybind$'), r'set-cmd-text -s :bind'),
]

View File

@ -344,6 +344,7 @@ class TestKeyConfigParser:
('set-cmd-text -s :search', 'set-cmd-text /'),
('set-cmd-text -s :search -r', 'set-cmd-text ?'),
('set-cmd-text -s :', 'set-cmd-text :'),
('set-cmd-text -s :set keybind', 'set-cmd-text -s :bind'),
]
)
def test_migrations(self, old, new_expected):