diff options
| author | Martin Bielik <mx.bielik@gmail.com> | 2024-03-09 19:48:17 +0100 |
|---|---|---|
| committer | Martin Bielik <mx.bielik@gmail.com> | 2024-03-09 19:48:17 +0100 |
| commit | 155d0c8eda5e5effdd7a234da46db18fbe32e17a (patch) | |
| tree | c199b8397cb0c627e5810fced9d05f5464b979f3 /py/chat.py | |
| parent | f4130feb986760a8d956983cb5cfe8d7106e7d4a (diff) | |
| download | vim-ai-155d0c8eda5e5effdd7a234da46db18fbe32e17a.tar.gz | |
fix using role in existing chat
Diffstat (limited to '')
| -rw-r--r-- | py/chat.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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") |