Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix(ui): allow built-in completions in orgmode.ui.input #903

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions lua/orgmode/ui/input.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,17 @@ local OrgInput = {}

---@param prompt string
---@param default? string
---@param completion? fun(arg_lead: string): string[]
---@param completion? string | fun(arg_lead: string): string[]
---@return OrgPromise<string>
function OrgInput.open(prompt, default, completion)
_G.orgmode.__input_completion = completion
local opts = {
prompt = prompt,
default = default or '',
}
if completion then
if type(completion) == 'string' then
opts.completion = completion
elseif completion then
opts.completion = 'customlist,v:lua.orgmode.__input_completion'
end

Expand Down
Loading