Fix ;o/;O default bindings
This commit is contained in:
parent
49699be44e
commit
ef439bb916
@ -43,6 +43,7 @@ Fixed
|
||||
- Fixed crash when using hints with JS disabled in some rare circumstances.
|
||||
- When hinting input fields (`:t`), also consider input elements without a type.
|
||||
- Fixed crash when opening an invalid URL with a percent-encoded and a real @ in it
|
||||
- Fixed default `;o` and `;O` bindings
|
||||
|
||||
v0.8.1
|
||||
------
|
||||
|
@ -1462,8 +1462,8 @@ KEY_DATA = collections.OrderedDict([
|
||||
('hint all hover', [';h']),
|
||||
('hint images', [';i']),
|
||||
('hint images tab', [';I']),
|
||||
('hint links fill ":open {hint-url}"', [';o']),
|
||||
('hint links fill ":open -t {hint-url}"', [';O']),
|
||||
('hint links fill :open {hint-url}', [';o']),
|
||||
('hint links fill :open -t {hint-url}', [';O']),
|
||||
('hint links yank', [';y']),
|
||||
('hint links yank-primary', [';Y']),
|
||||
('hint --rapid links tab-bg', [';r']),
|
||||
@ -1654,4 +1654,6 @@ CHANGED_KEY_COMMANDS = [
|
||||
(re.compile(r'^leave-mode$'), r'clear-keychain ;; leave-mode'),
|
||||
|
||||
(re.compile(r'^download-remove --all$'), r'download-clear'),
|
||||
|
||||
(re.compile(r'^hint links fill "([^"]*)"$'), r'hint links fill \1'),
|
||||
]
|
||||
|
@ -281,6 +281,11 @@ class TestKeyConfigParser:
|
||||
('leave-mode ;; foo', None),
|
||||
|
||||
('download-remove --all', 'download-clear'),
|
||||
|
||||
('hint links fill ":open {hint-url}"',
|
||||
'hint links fill :open {hint-url}'),
|
||||
('hint links fill ":open -t {hint-url}"',
|
||||
'hint links fill :open -t {hint-url}'),
|
||||
]
|
||||
)
|
||||
def test_migrations(self, old, new_expected):
|
||||
|
Loading…
Reference in New Issue
Block a user