We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6773d5a commit 2670f6dCopy full SHA for 2670f6d
lua/opencode/ui/completion/context.lua
@@ -114,7 +114,9 @@ local function add_selection_items(ctx)
114
create_context_item(
115
'Selection' .. (ctx.selections and #ctx.selections > 0 and string.format(' (%d)', #ctx.selections) or ''),
116
'selection',
117
- context.is_context_enabled('selection')
+ context.is_context_enabled('selection'),
118
+ ctx.selections and #ctx.selections > 0 and 'Manage your current selections individually'
119
+ or 'No selections available.'
120
),
121
}
122
0 commit comments