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