1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 21:57:38 +03:00
mal/impls/lua/readline.lua

42 lines
890 B
Lua
Raw Normal View History

local LN = require('linenoise')
local M = {}
local history_loaded = false
local history_file = os.getenv("HOME") .. "/.mal-history"
2015-03-01 00:58:35 +03:00
M.raw = false
function M.readline(prompt)
if not history_loaded then
history_loaded = true
xpcall(function()
for line in io.lines(history_file) do
LN.historyadd(line)
end
end, function(exc)
return true -- ignore the error
end)
end
2015-03-01 00:58:35 +03:00
if M.raw then
io.write(prompt); io.flush();
line = io.read()
else
line = LN.linenoise(prompt)
end
if line then
LN.historyadd(line)
xpcall(function()
local f = io.open(history_file, "a")
f:write(line.."\n")
f:close()
end, function(exc)
return true -- ignore the error
end)
end
return line
end
return M