Difference between revisions of "User:Jesse Barnett/Scite"

From Second Life Wiki
Jump to navigation Jump to search
Line 2: Line 2:


==SciTE==
==SciTE==
(Page is under construction)
Actively updating SciTE pages 8/07/09
(Not too terribly happy with the layout right now. Going to redo it to bring all of the intro, including pic, up top. Then transition over to a step by step, download this, this, this, this, that and put this here and that there etc.)
(Actually since I started this web page it got me interested in some of the newer posibilities of SciTE. It has changed a great deal since Ezhar brought us SciTE-EZ. ALL of this information here is going to change dramtically in the next couple of weeks)
 
Stay Tuned!!!!!


Professional duty scripting workhorse. Script in multiple languages, compiles through Visual Studio C++ allowing you to use includes, define your own global variables, customise auto-indent, syntax check with lslint, customise wiki help, customise shortcuts, tabbed files, add bookmarks, opens files in LSLEditor for testing.
Professional duty scripting workhorse. Script in multiple languages, compiles through Visual Studio C++ allowing you to use includes, define your own global variables, customise auto-indent, syntax check with lslint, customise wiki help, customise shortcuts, tabbed files, add bookmarks, opens files in LSLEditor for testing.
Line 13: Line 9:


You can get SciTE version 1.79 here: [[http://www.scintilla.org/SciTE.html]]
You can get SciTE version 1.79 here: [[http://www.scintilla.org/SciTE.html]]
Once you have SciTE installed then you need to download and replace the following pages:


But once you have SciTE, you still have some work to do to get it to do some of the many tricks it can do. A good place to start would be the files listed below:
*[https://docs.google.com/Doc?docid=0Ador6etp-D8VZGN6ZmJtenpfMjBzNHFmejdocQ&hl=en lsl.api]updated 8/07/09
 
*[https://docs.google.com/Doc?docid=0Ador6etp-D8VZGN6ZmJtenpfMjBzNHFmejdocQ&hl=en lsl.api]


*[https://docs.google.com/Doc?docid=0Ador6etp-D8VZGN6ZmJtenpfMjFkZmM4NGdoYw&hl=en lsl.properties]
*[https://docs.google.com/Doc?docid=0Ador6etp-D8VZGN6ZmJtenpfMjFkZmM4NGdoYw&hl=en lsl.properties]dir: C:\Program Files\Scite\        updated 8/07/09


*[https://docs.google.com/Doc?docid=0Ador6etp-D8VZGN6ZmJtenpfMjJmcmc2Y21ocQ&hl=en lsl_abbrev.properties]
*[https://docs.google.com/Doc?docid=0Ador6etp-D8VZGN6ZmJtenpfMjJmcmc2Y21ocQ&hl=en lsl_abbrev.properties]C:\Program Files\Scite\abbrev\        updated 8/07/09


*[https://docs.google.com/Doc?docid=0Ador6etp-D8VZGN6ZmJtenpfMjJmcmc2Y21ocQ&hl=en SciTEGlobal.properties]
*[https://docs.google.com/Doc?docid=0Ador6etp-D8VZGN6ZmJtenpfMjJmcmc2Y21ocQ&hl=en SciTEGlobal.properties]C:\Program Files\Scite\        updated 8/07/09


*[https://docs.google.com/Doc?docid=0Ador6etp-D8VZGN6ZmJtenpfMjRocXo2aHFxZg&hl=en SciTEUser.properties]
*[https://docs.google.com/Doc?docid=0Ador6etp-D8VZGN6ZmJtenpfMjRocXo2aHFxZg&hl=en SciTEUser.properties]C:\Documents and Settings\Owner          updated 8/07/09


You could take a look over at Strife's page with his SciTE links also. You can pickup stripper, indent, clipboard and lslint there and MSVC Express. [[https://wiki.secondlife.com/wiki/User:Strife_Onizuka]]
You could take a look over at Strife's page with his SciTE links also. You can pickup stripper, indent, clipboard and lslint there and MSVC Express. [https://wiki.secondlife.com/wiki/User:Strife_Onizuka]NOTE: Some of Strife's files are missing. If he will not find a spot to host them then I will. I will be glad to email them to whoever needs them once I have it setup in the next couple of days.          updated 8/07/09


I have mine linked to LSLEditor. See the note in my lsl.properties file for placing it(The C compiler does not like a path with spaces in it, as in C:\Program Files\LSLEditor)
I have mine linked to [http://www.lsleditor.org/Download.aspx LSLEditor]. Download and extract to your root directory like so:  C:\lsleditor NOTE:It will not work if you put it in a path with a space in the name like C:\Program Files\LSLEditor         updated 8/07/09


==Why go to all of this trouble?==
==Why go to all of this trouble?==

Revision as of 08:02, 7 August 2009

SciTE

Actively updating SciTE pages 8/07/09

Professional duty scripting workhorse. Script in multiple languages, compiles through Visual Studio C++ allowing you to use includes, define your own global variables, customise auto-indent, syntax check with lslint, customise wiki help, customise shortcuts, tabbed files, add bookmarks, opens files in LSLEditor for testing.

Many parts of this page will sound like an advertisement. SciTE is free, so no, I am not making any money off of this. It is just that SciTE has been sorely neglected for more then a year now. Ezhar Fairlight(Bless Him!!) brought us the original SciTE package for LSL, still functional but no longer maintained. Hopefully now others will start to play around with it.

You can get SciTE version 1.79 here: [[1]] Once you have SciTE installed then you need to download and replace the following pages:

You could take a look over at Strife's page with his SciTE links also. You can pickup stripper, indent, clipboard and lslint there and MSVC Express. [2]NOTE: Some of Strife's files are missing. If he will not find a spot to host them then I will. I will be glad to email them to whoever needs them once I have it setup in the next couple of days. updated 8/07/09

I have mine linked to LSLEditor. Download and extract to your root directory like so: C:\lsleditor NOTE:It will not work if you put it in a path with a space in the name like C:\Program Files\LSLEditor updated 8/07/09

Why go to all of this trouble?

(Especially when LSLEditor does do a fantastic job now??)

You can define custom actions. For instance if I type "random" in a script and hit "ctrl B", Scite inserts this: <lsl>integer rand_chan; random() { rand_chan = (integer) llFrand(-10000) - 10000000; }</lsl> And that is just one of my small custom definitions ;)

You can also do includes which allows you to combine several common scripts.

The indent function is extremely powerful and you can customs define each and every setting to match the style you prefer.

So many more benefits that just bring it over the top. Among them is the ability to control all aspects of SciTE through outside scripts. There are a number of Lua scripts for SciTE. And the one I use (SciTE CVS) has perl scripts included to clean up code.

You can not only script in most languages, you can also setup the preferences for each language individually. When I am scripting in LSL here are some of the choices i have:

SciTE.jpg