diff options
| author | Martin Bielik <mx.bielik@gmail.com> | 2023-05-30 18:01:20 +0200 |
|---|---|---|
| committer | Martin Bielik <mx.bielik@gmail.com> | 2023-05-30 18:01:20 +0200 |
| commit | a167e4888887784adac99a5a15c1a956e7af8de0 (patch) | |
| tree | 1323c602a9a30c80f9b53e36053de1bf31b42af7 /README.md | |
| parent | eedbaa6a9bdf5d86891a9d4ee6fcd19a0524322c (diff) | |
| download | vim-ai-a167e4888887784adac99a5a15c1a956e7af8de0.tar.gz | |
selection boundary issue reference, fixes #45
Diffstat (limited to '')
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -226,7 +226,7 @@ let g:vim_ai_complete = { " - engine: complete | chat - see how to configure chat engine in the section below " - options: openai config (see https://platform.openai.com/docs/api-reference/completions) " - options.request_timeout: request timeout in seconds -" - options.selection_boundary: seleciton prompt wrapper +" - options.selection_boundary: seleciton prompt wrapper (eliminates empty responses, see #20) " - ui.paste_mode: use paste mode (see more info in the Notes below) let g:vim_ai_edit = { \ "engine": "complete", @@ -254,7 +254,7 @@ END " - options: openai config (see https://platform.openai.com/docs/api-reference/chat) " - options.initial_prompt: prompt prepended to every chat request " - options.request_timeout: request timeout in seconds -" - options.selection_boundary: seleciton prompt wrapper +" - options.selection_boundary: seleciton prompt wrapper (eliminates empty responses, see #20) " - ui.populate_options: put [chat-options] to the chat header " - ui.open_chat_command: preset (preset_below, preset_tab, preset_right) or a custom command " - ui.scratch_buffer_keep_open: re-use scratch buffer within the vim session |