diff options
| author | TitanSnow <[email protected]> | 2017-05-10 16:12:29 +0800 |
|---|---|---|
| committer | TitanSnow <[email protected]> | 2017-05-10 16:12:29 +0800 |
| commit | 1979a8864068a0b9fed31a5b0d9bb24e236abbf4 (patch) | |
| tree | edb8149b4d46e1aaaa5ae09d7dc1f2a6ea1ccd9f /xmake/plugins/lua | |
| parent | f8229f6c4344b78685194193fea070f0c9fe3f33 (diff) | |
Revert "save/load replhistory"
This reverts commit 81814d7fa83419d0f23d8c76226c2f7f16aaa63c.
Diffstat (limited to 'xmake/plugins/lua')
| -rw-r--r-- | xmake/plugins/lua/xmake.lua | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/xmake/plugins/lua/xmake.lua b/xmake/plugins/lua/xmake.lua index bef62203b..1c6b2bf27 100644 --- a/xmake/plugins/lua/xmake.lua +++ b/xmake/plugins/lua/xmake.lua @@ -34,8 +34,6 @@ task("lua") -- imports import("core.base.option") import("core.sandbox.sandbox") - import("core.project.history") - import("lib.readline") -- list all scripts? if option.get("list") then @@ -58,28 +56,8 @@ task("lua") import("scripts." .. name).main(unpack(option.get("arguments") or {})) end else - -- clear history - readline.clear_history() - - -- load history - local replhistory = history.load("replhistory") or {} - for _, ln in ipairs(replhistory) do - readline.add_history(ln) - end - -- enter interactive mode sandbox.interactive() - - -- save to history - local entries = readline.get_history_state().entries - if #entries > #replhistory then - for i = #replhistory+1, #entries do - history.save("replhistory", entries[i].line) - end - end - - -- clear history - readline.clear_history() end end) |
