Add C-M and C-J for every command that got Return as key

This commit is contained in:
Fritz V155 Reichwald 2015-05-06 16:33:12 +02:00
parent 8806aac362
commit b98bafaefe

View File

@ -1213,7 +1213,7 @@ KEY_DATA = collections.OrderedDict([
])),
('hint', collections.OrderedDict([
('follow-hint', ['<Return>']),
('follow-hint', ['<Return>', '<Ctrl-M>', '<Ctrl-J>']),
])),
('passthrough', {}),
@ -1227,7 +1227,7 @@ KEY_DATA = collections.OrderedDict([
])),
('prompt', collections.OrderedDict([
('prompt-accept', ['<Return>', '<Ctrl-J>', '<Shift-Return>']),
('prompt-accept', ['<Return>', '<Ctrl-J>', '<Shift-Return>', '<Ctrl-M>']),
('prompt-yes', ['y']),
('prompt-no', ['n']),
])),