You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nvim-libmodal/lua/libmodal/src/prompt.lua

31 lines
378 B
Lua

--[[
/*
* IMPORTS
*/
]]
local libmodal = require('src.libmodal')
--[[
/*
* MODULE
*/
]]
libmodal.prompt = {}
--[[SUMMARY: Enter a prompt.
PARAMETERS:
`args[1]` => the prompt name.
`args[2]` => the prompt callback, or mode command table.
]]
function libmodal.prompt.enter(...)
local args = {...}
end
--[[
/*
* PUBLICIZE MODULE
*/
]]
return libmodal.prompt