Merge branch 'arza-zara-patch-1'
This commit is contained in:
commit
cd975f3f07
@ -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)
|
||||
-------------------
|
||||
|
@ -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
|
||||
|
@ -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'),
|
||||
]
|
||||
|
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user