From 64b106c13e18c33be0f2b0de532054e0ed3f731d Mon Sep 17 00:00:00 2001 From: jacqueline Date: Wed, 13 Dec 2023 16:10:08 +1100 Subject: add a cool lua repl --- lib/lua-linenoise/example.lua | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 lib/lua-linenoise/example.lua (limited to 'lib/lua-linenoise/example.lua') diff --git a/lib/lua-linenoise/example.lua b/lib/lua-linenoise/example.lua new file mode 100644 index 00000000..8b8ba173 --- /dev/null +++ b/lib/lua-linenoise/example.lua @@ -0,0 +1,32 @@ +local L = require 'linenoise' +-- L.clearscreen() +print '----- Testing lua-linenoise! ------' +local prompt, history = '? ', 'history.txt' +L.historyload(history) -- load existing history +L.setcompletion(function(c,s) + if s == 'h' then + c:add('help') -- same as L.addcompletion(c,'help) + L.addcompletion(c,'halt') -- same as c:add('halt') + end +end) +L.sethints(function(s) + if s == 'h' then + return ' test hint' + end +end) + +L.enableutf8() + +local line, err = L.linenoise(prompt) +while line do + if #line > 0 then + print(line:upper()) + L.historyadd(line) + L.historysave(history) -- save every new line + end + line, err = L.linenoise(prompt) +end + +if err then + print('An error occurred: ' .. err) +end -- cgit v1.2.3