Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit a38f5c4

Browse files
fix: fix autocomplete for tags search prompt (#812)
1 parent 8ead368 commit a38f5c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/orgmode/agenda/views/tags.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ end
3535

3636
function AgendaTagsView:build()
3737
local tags = vim.fn.OrgmodeInput('Match: ', self.search, function(arg_lead)
38-
utils.prompt_autocomplete(arg_lead, self.files:get_tags())
38+
return utils.prompt_autocomplete(arg_lead, self.files:get_tags())
3939
end)
4040
if vim.trim(tags) == '' then
4141
return utils.echo_warning('Invalid tag.')

0 commit comments

Comments
 (0)