From 36af2a51af5d707178fb17c44a7b8f6912478d12 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 16 Jul 2023 14:15:18 -0300 Subject: [PATCH] Change keybinding from ControlJ to ControlM for inserting a new line. # Aider chat conversation: --- aider/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/io.py b/aider/io.py index 43c4eb931..c27b0069f 100644 --- a/aider/io.py +++ b/aider/io.py @@ -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')