Update configfiles.py: line too long fix
This commit is contained in:
parent
048b792c6f
commit
4c7f6e5339
@ -355,7 +355,8 @@ class ConfigPyWriter:
|
|||||||
if normal_bindings:
|
if normal_bindings:
|
||||||
yield self._line('# Bindings for normal mode')
|
yield self._line('# Bindings for normal mode')
|
||||||
for key, command in sorted(normal_bindings.items()):
|
for key, command in sorted(normal_bindings.items()):
|
||||||
yield self._line('config.bind({!r}, {!r})'.format(key, command))
|
yield self._line('config.bind({!r}, {!r})'.format(
|
||||||
|
key, command))
|
||||||
yield ''
|
yield ''
|
||||||
|
|
||||||
for mode, mode_bindings in sorted(self._bindings.items()):
|
for mode, mode_bindings in sorted(self._bindings.items()):
|
||||||
|
Loading…
Reference in New Issue
Block a user