blob: 5acdb543ec82820c91b1f2cf895261f1f7e352ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
local LN = require('linenoise')
local M = {}
local history_loaded = false
local history_file = os.getenv("HOME") .. "/.mal-history"
M.raw = false
function M.readline(prompt)
if not history_loaded then
history_loaded = true
for line in io.lines(history_file) do
LN.historyadd(line)
end
end
if M.raw then
io.write(prompt); io.flush();
line = io.read()
else
line = LN.linenoise(prompt)
end
if line then
LN.historyadd(line)
local f = io.open(history_file, "a")
f:write(line.."\n")
f:close()
end
return line
end
return M
|