Updated init.lua to allow autocomplete of new command builtins@hyperlink

This commit is contained in:
Ethan Smith-Coss 2023-01-23 18:19:56 +00:00
parent e61af8773b
commit b81d6b5acc
Signed by: TheOnePath
GPG Key ID: 4E7D436CE1A0BAF1

View File

@ -23,7 +23,7 @@ presser.setup = function ( opts )
{
nargs = 1,
complete = function (ArgLead, CmdLine, CursorPos)
return { 'find_replace' }
return { 'find_replace', 'hyperlink' }
end,
}
)