tangled
alpha
login
or
join now
robinwobin.dev
/
artio.nvim
3
fork
atom
minimal extui fuzzy finder for neovim
3
fork
atom
overview
issues
pulls
pipelines
fix(plugin): user command complete params and logic
robinwobin.dev
5 days ago
f39e3fb1
9c654035
+5
-2
1 changed file
expand all
collapse all
unified
split
plugin
artio.lua
+5
-2
plugin/artio.lua
···
46
46
builtin()
47
47
end, {
48
48
nargs = "?",
49
49
-
complete = function(argLead)
49
49
+
complete = function(arglead, _, _)
50
50
local builtins = vim.tbl_keys(require("artio.builtins"))
51
51
-
return vim.fn.matchfuzzy(builtins, argLead)
51
51
+
if #arglead == 0 then
52
52
+
return builtins
53
53
+
end
54
54
+
return vim.fn.matchfuzzy(builtins, arglead)
52
55
end,
53
56
})
54
57