Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Entire forum
➜ MUSHclient
➜ General
➜ Please update the Documentation.sql file?
Please update the Documentation.sql file?
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| WillFa
USA (525 posts) Bio
|
Date
| Tue 30 Jun 2009 06:43 AM (UTC) Amended on Tue 30 Jun 2009 07:03 AM (UTC) by WillFa
|
Message
| Thanks Nick. :)
I've been using Crimson Editor for about a year, but have really been missing "intellisense" type stuff. So, I've decided to give SciTE another try.
After importing the .sql into a new sqlite db (instructions in this thread http://www.gammon.com.au/forum/?id=9241 ); it was quick enough to make a Mushclient.api file for SciTE.
db = sqlite3.open("C:\MCdoc.db")
stmt = db:prepare("select name,prototype,summary from functions order by name")
local foo = {}
while stmt:step() == 100 do
foo = stmt:get_named_values()
AppendToNotepad("API", string.format("%s%s%s\r\n", foo.name,
foo.prototype:gsub("^.-%(", "%("):gsub(";$", ""), foo.summary))
end
stmt:finalize()
db:close()
After doing this, I'm missing about 24 functions. (line count vs utils.functionlist)
But it's nice having autocomplete and tooltips available. :)
| Top |
|
Posted by
| Nick Gammon
Australia (23,120 posts) Bio
Forum Administrator |
Date
| Reply #1 on Tue 30 Jun 2009 09:42 AM (UTC) |
Message
| |
Posted by
| WillFa
USA (525 posts) Bio
|
Date
| Reply #2 on Tue 30 Jun 2009 05:34 PM (UTC) |
Message
| |
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
12,819 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top