[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: lua-completer 0.0
- From: Jay Carlson <nop@...>
- Date: Tue, 16 Mar 2004 11:51:28 -0500
http://www.place.org/~nop/lua-completer-0.0.tar.gz
If you have readline support in your lua interpreter, this loadable
module adds completion against the Lua environment. I suggest setting
LUA_INIT to point to it (like "@/home/nop/lua-completer/rlcompleter.lua")
> io.<TAB><TAB>
io.close io.lines io.popen io.stdin io.type
io.flush io.open io.read io.stdout io.write
io.input io.output io.stderr io.tmpfile
> io.t<TAB>
io.tmpfile io.type
> io.tm<TAB> =>
> io.tmpfile
> ma<TAB> =>
> math.
Jay