From 155d0c8eda5e5effdd7a234da46db18fbe32e17a Mon Sep 17 00:00:00 2001 From: Martin Bielik Date: Sat, 9 Mar 2024 19:48:17 +0100 Subject: fix using role in existing chat --- py/chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/chat.py b/py/chat.py index f996800..67f2d5d 100644 --- a/py/chat.py +++ b/py/chat.py @@ -42,7 +42,7 @@ def initialize_chat_window(): vim.command("normal! i\n>>> user\n\n") if prompt: - vim.command("normal! a" + prompt) + vim.command("normal! i" + prompt) vim_break_undo_sequence() vim.command("redraw") -- cgit v1.2.3