Remove old fixme

This commit is contained in:
Florian Bruhin 2018-03-04 19:40:03 +01:00
parent f85e69ec77
commit 58b7599152
2 changed files with 0 additions and 2 deletions

View File

@ -2401,7 +2401,6 @@ bindings.default:
<Ctrl-H>: rl-backward-delete-char
<Ctrl-Y>: rl-yank
<Escape>: leave-mode
# FIXME can we do migrations?
yesno:
<Return>: prompt-accept
y: prompt-accept yes

View File

@ -433,7 +433,6 @@ class KeySequence:
def parse(cls, keystr):
"""Parse a keystring like <Ctrl-x> or xyz and return a KeySequence."""
# pylint: disable=protected-access
# FIXME: test stuff like <a, a>
new = cls()
strings = list(_parse_keystring(keystr))
for sub in utils.chunk(strings, cls._MAX_LEN):