Skip to content

Commit 2132c1c

Browse files
committed
style: improve model/agent selection prompts
Add arrow (>) at the end of prompts in model and agent selection menus to better indicate that user input is expected.
1 parent db4e6a7 commit 2132c1c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lua/CopilotChat/init.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ function M.select_model()
407407

408408
vim.schedule(function()
409409
vim.ui.select(models, {
410-
prompt = 'Select a model',
410+
prompt = 'Select a model> ',
411411
}, function(choice)
412412
if choice then
413413
M.config.model = choice:gsub(' %(selected%)', '')
@@ -431,7 +431,7 @@ function M.select_agent()
431431

432432
vim.schedule(function()
433433
vim.ui.select(agents, {
434-
prompt = 'Select an agent',
434+
prompt = 'Select an agent> ',
435435
}, function(choice)
436436
if choice then
437437
M.config.agent = choice:gsub(' %(selected%)', '')

0 commit comments

Comments
 (0)