From 5188872791057dba1d2e447a8b30ecb69ed8579a Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 29 Oct 2024 13:50:38 -0700 Subject: [PATCH] style: add comment about vi mode cursor config --- aider/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/io.py b/aider/io.py index 9aad37a93..62c6fea2f 100644 --- a/aider/io.py +++ b/aider/io.py @@ -242,7 +242,7 @@ class InputOutput: "output": self.output, "lexer": PygmentsLexer(MarkdownLexer), "editing_mode": self.editingmode, - "cursor": ModalCursorShapeConfig(), + "cursor": ModalCursorShapeConfig(), #ai only include this if vi mode! } if self.input_history_file is not None: session_kwargs["history"] = FileHistory(self.input_history_file)