Change keybinding from ControlJ to ControlM for inserting a new line.

# Aider chat conversation:
This commit is contained in:
Paul Gauthier 2023-07-16 14:15:18 -03:00
parent 6244df8352
commit 36af2a51af

View file

@ -207,7 +207,7 @@ class InputOutput:
kb = KeyBindings()
@kb.add(Keys.ControlJ, eager=True)
@kb.add(Keys.ControlM, eager=True)
def _(event):
event.current_buffer.insert_text('\n')