ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Lua Love

by szensk ST3

SublimeText Lua and Love2D package.

Labels lua

Details

Installs

  • Total 29K
  • Win 21K
  • Mac 4K
  • Linux 4K
Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11
Windows 4 4 6 7 8 6 5 9 9 5 7 14 7 9 10 6 9 10 1 5 7 2 12 8 6 6 4 8 5 4 8 10 5 7 3 4 11 8 4 6 5 5 4 6 10 6
Mac 0 0 1 2 2 1 0 0 1 0 4 0 1 0 1 2 0 0 2 0 1 0 0 4 1 0 2 2 3 1 0 1 0 0 0 1 0 2 0 0 0 0 0 0 0 0
Linux 1 0 2 1 5 1 1 2 1 0 0 0 0 0 1 0 0 1 2 2 1 0 4 2 4 3 0 1 2 0 2 2 2 1 1 1 2 2 2 1 1 0 2 0 0 0

Readme

Source
raw.​githubusercontent.​com

Lua Love

LOVE Downloads

LuaLove is a package for Sublime Text which brings LÖVE 2D API syntax highlighting and more. It is based on SublimeLove, LuaSublime, and lua_snippet.

Features

  • LÖVE 2D syntax highlighting (including GLSL shaders code, ffi.cdef and LDoc comments)
  • Auto completions with metadata (see below)
  • Some Lua snippets
  • Errors highlighting (configurable)
  • Build systems (configurable)

Installation

Using Package Control

  1. Open Command Palette (Ctrl+Shift+P or Cmd+Shift+P on Mac). Alternatively go to Tools > Command Palette...
  2. Enter Package Control: Install Package
  3. Find and install Lua Love package

Manual

  1. Go to Packages directory by Preferences > Browse Packages...
  2. Download and extract .zip or clone git repository by running:
git clone git://github.com/szensk/subllualove.git

Settings

Settings are saved in JSON format. You can change settings in Preferences > Package Settings > Lua Love or by running Preferences: LuaLove Settings in command Palette.

Error checking

By default any Lua file or file with LOVE syntax will be run through selected live parser and the first encountered error (if any) is highlighted. The error is displayed in the status bar and from Sublime Text 4 also in annotation.

Syntax highlighting

Set syntax using View > Syntax > LOVE or in command palette Set Syntax: LOVE.

If you are using shaders and wants better GLSL syntax highlighting, install some GLSL syntax plugin, as if no GLSL syntax is found, it will fallback to C syntax. C code in ffi.cdef is highlighted as C.

Auto completions and snippets

There are auto completions for LOVE functions and variables (like love.graphics.setColor), Lua and LuaJIT functions and variables (like coroutine.resume, ffi.cdef, bit.bor). Functions and variables have metadata - kind (function, variable, …) and details with link to the manual displayed since Sublime Text 4.

Pressing Ctrl+Space (Cmd+Space on Mac) in an open Lua file or file with LOVE set as syntax will show the auto completions for the Löve2D API as well as Lua function snippets.

To enable auto completions for LDoc without pressing Ctrl+Space (Cmd+Space on Mac), add {"selector": "comment.block.documentation.lua"} to auto_complete_triggers in settings.

Build systems

Build systems are available there to launch your project by just pressing Ctrl+B (Cmd+B on Mac) or F7.

To set up build system, go to Tools > Build System and select LuaLove.

If you don't have love in your PATH or you would like to tweak some build system settings, see build_system.(variant).* options in settings

Variants

First time you build your project, you will be asked to select one of the variants described below. You can change them anytime by pressing Ctrl+Shift+B (Cmd+Shift+B on Mac)

Build system variant Description
LuaLove starts LÖVE 2D in current opened folder
LuaLove - LuaJIT Run File runs current file using LuaJIT
LuaLove - Lua Run File runs current file using Lua
LuaLove - ldoc: File runs ldoc with current file and outputs markdown file in doc folder
LuaLove - ldoc: Project runs ldoc with src folder in current opened folder and outputs markdown files in doc folder