Add FIXME

This commit is contained in:
Florian Bruhin 2018-02-27 09:38:40 +01:00
parent c0e2550046
commit 079fcc7eea

View File

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