Any IDE that does code completion on custom modules?

So far I’ve tried Coda with bundle, TextMate with plugin and XCode with that extension. None of the combinations can support this:
main.lua:

app.somethingCodeCompleteShouldCatch()
app.lua:
module(…, package.seeall)
function somethingCodeCompleteShouldCatch()
end

None of them do this, but anyway so far I like XCode best out of all three. The problem is it creates a huge mess with its project files, which in turn makes a huge mess with my SCM.
What are you guys using?

[import]uid: 21280 topic_id: 5770 reply_id: 305770[/import]

That is:

main.lua:
local app = require “app”
app.somethingCodeCompleteShouldCatch()

[import]uid: 21280 topic_id: 5770 reply_id: 19761[/import]

Just to add, obviously I’d like it to work with display, physics and other modules as well. Thanks. [import]uid: 21280 topic_id: 5770 reply_id: 19764[/import]

keep your eye on this
http://developer.anscamobile.com/forum/2011/01/06/indeed-corona-sdk-tm

those features are requested, but complicated by the fact there are numerous way to define functions/oop in Lua

[import]uid: 6645 topic_id: 5770 reply_id: 19803[/import]

This indeed seems promising, can’t wait to try it out. Judging by the lack of response from other developers they seem to be waiting for it also. [import]uid: 21280 topic_id: 5770 reply_id: 19864[/import]