Difference between revisions of "Sublime Text"

(On Windows)
(Change configuration to support ST2 Projects and parse errors)
Line 10: Line 10:
 
{
 
{
 
     "selector": "source.lua",
 
     "selector": "source.lua",
     "cmd": ["C:/Program Files/LOVE/love.exe", "$file_path"],
+
     "cmd": ["C:/Program Files/LOVE/love.exe", "${project_path:${file_path}}"],
     "shell": true
+
     "shell": true,
 +
    "file_regex": "^Error: (?:[^:]+: )?([^: ]+?):(\\d+):() ([^:]*)$"
 
}
 
}
 
</source>
 
</source>
Line 25: Line 26:
 
{
 
{
 
     "selector": "source.lua",
 
     "selector": "source.lua",
     "cmd": ["/Applications/love.app/Contents/MacOS/love", "$file_path"]
+
     "cmd": ["/Applications/love.app/Contents/MacOS/love", "${project_path:${file_path}}"],
 +
    "file_regex": "^Error: (?:[^:]+: )?([^: ]+?):(\\d+):() ([^:]*)$"
 
}
 
}
 
</source>
 
</source>
Line 41: Line 43:
 
io.stdout:setvbuf("no")
 
io.stdout:setvbuf("no")
 
</source>
 
</source>
 +
 +
== Jumping to errors ==
 +
 +
If there was an error during execution, you can use the F4 (next error) and SHIFT-F4 (previous error) to go through the errors that lua encountered.
  
 
== See also ==
 
== See also ==

Revision as of 23:14, 13 October 2014

Sublime Text is a sophisticated text editor for code, markup and prose.

Running love projects from Sublime Text 2

On Windows

Create a new Build System first: Tools -> Build System -> New Build System

Then paste the following code:

{
    "selector": "source.lua",
    "cmd": ["C:/Program Files/LOVE/love.exe", "${project_path:${file_path}}"],
    "shell": true,
    "file_regex": "^Error: (?:[^:]+: )?([^: ]+?):(\\d+):() ([^:]*)$"
}

Now you can use CTRL + B to run your love project. Note that this code doesn't seem to work if you have spaces in your $file_path.

On Mac

Create a new Build System first: Tools -> Build System -> New Build System

Then paste in the following code:

{
    "selector": "source.lua",
    "cmd": ["/Applications/love.app/Contents/MacOS/love", "${project_path:${file_path}}"],
    "file_regex": "^Error: (?:[^:]+: )?([^: ]+?):(\\d+):() ([^:]*)$"
}

(This is assuming that your love.app is in the Applications folder)

Now you can use CMD + B to run your love project.


Displaying live console output in Sublime Text 2

By default the console in Sublime Text will not display any output, such as print() calls, until the LOVE application has been closed.

To make the console output display live add the following code to the top of your main.lua file, or inside conf.lua:

io.stdout:setvbuf("no")

Jumping to errors

If there was an error during execution, you can use the F4 (next error) and SHIFT-F4 (previous error) to go through the errors that lua encountered.

See also