forked from kanaka/mal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readline.lua
41 lines (35 loc) · 890 Bytes
/
readline.lua
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
34
35
36
37
38
39
40
41
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
xpcall(function()
for line in io.lines(history_file) do
LN.historyadd(line)
end
end, function(exc)
return true -- ignore the error
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)
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