Difference between revisions of "SciTE"

m
(editor integration category)
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
SciTE is a SCIntilla based Text Editor. Originally built to demonstrate Scintilla, it has grown to be a generally useful editor with facilities for building and running programs. It is best used for jobs with simple configurations - I use it for building test and demonstration programs as well as SciTE and Scintilla, themselves.
+
SciTE is a Text Editor with facilities for building and running programs.
 +
[[File:Scite.png|right|thumb|Scite on Windows]]
  
== Editing lua+löve file on windows ==
+
== Running love projects from SciTE ==
You can use SciTE to edit your löve code by modifying the last lines in your lua.properties like this :
+
You can use SciTE to launch your LÖVE game by adding the following to your lua.properties:
 
<source lang="ini">
 
<source lang="ini">
# compatible with LuaBinaries for Lua 5.1; will work on both platforms.
+
command.go.main.lua="C:\Path\to\love.exe" "$(FileDir)"
##command.compile.*.lua=luac5.1 -o "$(FileName).luc" "$(FileNameExt)"
 
# Lua 5.1
 
##command.go.*.lua=lua5.1 "$(FileNameExt)"
 
# Lua 4.0
 
##command.go.*.lua=Lua-4.0.exe -c -f "$(FileNameExt)"
 
 
 
command.go.*.lua="C:\your path to\LOVE\love.exe" "$(FileDir)"
 
 
</source>
 
</source>
Simply make sure to edit the path to your love.exe and comment the others "command.go"
+
Just make sure you put it in front of the <code>command.go.*.lua</code> entries.
 
 
  
[http://www.scintilla.org/SciTE.html SciTE Website]
+
== See also ==
 +
* [http://love2d.org/forums/viewtopic.php?f=3&t=1037 "Using SciTE with LÖVE" forum thread]
 +
* [http://www.scintilla.org/SciTE.html SciTE Website]
  
 
[[Category:Software]]
 
[[Category:Software]]
 +
[[Category: Editor integration]]
  
{{#set:Name=Scite}}
+
{{#set:Name=SciTE}}
{{#set:Description=Code Source Editor}}
+
{{#set:Description=Source Code Editor}}
 
{{#set:Type=Editor}}
 
{{#set:Type=Editor}}
 
{{#set:Status=Complete}}
 
{{#set:Status=Complete}}
 
{{#set:Author=scite}}
 
{{#set:Author=scite}}
 
{{#set:Screenshot=File:Scite.png}}
 
{{#set:Screenshot=File:Scite.png}}
{{#set:License=[[All Right Reserved]]}}
+
{{#set:License=Historical Permission Notice and Disclaimer}}

Latest revision as of 08:41, 18 August 2015

SciTE is a Text Editor with facilities for building and running programs.

Scite on Windows

Running love projects from SciTE

You can use SciTE to launch your LÖVE game by adding the following to your lua.properties:

command.go.main.lua="C:\Path\to\love.exe" "$(FileDir)"

Just make sure you put it in front of the command.go.*.lua entries.

See also