LuaExtended
An improved ST3 Lua syntax definition.
Details
Installs
- Total 8K
- Win 6K
- Mac 2K
- Linux 1K
Jun 4 | Jun 3 | Jun 2 | Jun 1 | May 31 | May 30 | May 29 | May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | May 15 | May 14 | May 13 | May 12 | May 11 | May 10 | May 9 | May 8 | May 7 | May 6 | May 5 | May 4 | May 3 | May 2 | May 1 | Apr 30 | Apr 29 | Apr 28 | Apr 27 | Apr 26 | Apr 25 | Apr 24 | Apr 23 | Apr 22 | Apr 21 | Apr 20 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 1 | 3 | 5 | 0 | 0 | 0 | 0 | 1 | 3 | 5 | 3 | 0 | 4 | 0 | 1 | 1 | 1 | 1 | 3 | 1 | 1 | 1 | 1 | 4 | 0 | 0 | 1 | 1 | 0 | 1 | 1 | 0 | 2 | 1 | 1 | 4 | 2 | 2 | 1 | 3 | 2 | 0 | 2 | 1 | 1 |
Mac | 0 | 0 | 0 | 1 | 2 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
What is this?
LuaExtended is a syntax definition and snippet package for Sublime Text 3.
Features
As of right now, LuaExtended contains the following improvements over the default Lua package:
Indentation of
repeat until
loops fixedIndentation of table definitions fixed
Improved syntax definition structure for easier future work on more fixes
error
calls have red-highlighted stringsCompletions include the full standard library, including parameter names with tab stops
Completions also include Lua keywords
New snippets:
New loop snippets (
while
andrepeat
)Improved indentation of
for
snippets, synced variable name tab stops++
(expands the current line into the form ofline = line + 1
, ignoring inline comments and whitespace)+=
and-=
dfun
, an LDoc-style documented function snippetif
,elseif
andelse
if~
,if=
, and theirelseif
counterparts, expanding toif x ~= y then ...
and similarMost snippets also handle selection, meaning you can e.g. apply
while
on a block of code which will then become the body of thewhile
loop
Function calls (including object method invocations
foo:bar()
and syntactic sugar likefoo { bar }
) are highlighted properlyAnonymous function definitions are highlighted properly (arguments are formatted)
Restructured indent settings
do end
blocks are indented properly
All features are grouped under the
source.luae
scope, so that they don't interfere with the default Lua package
Installation
You can now use Package Control to install LuaExtended. Simply type “install” in the Command Palette (Ctrl + Shift + P) to find the Package Control: Install Package
command. Wait for the repository lists to load
and search for 'LuaExtended'. Alternatively, you can clone this repository into your Data/User
folder (either in the install directory, in %appdata%/Sublime Text 3
on Windoze, or wherever else other environments put it).
LuaExtended and Linters
If you are using a SublimeLinter3-based linter such as SublimeLinter-lua, you will need to modify your settings to get LuaExtended linting to work.
Navigate to Preferences > Package Settings
Find SublimeLinter in the list and open its “Settings - User”
The settings file is of the JSON format, so look for the line that says "syntax_map": {
You will need to add a binding that tells SublimeLinter to lint LuaExtended just like Lua. This is done by adding a line that says "luaextended": "lua",
. Don't worry about the alphabetical order of the entries, SublimeLinter will sort them on next reload.
And there you go! Try opening a *.luae
, *.ext.lua
or *.extended.lua
file and see whether linting works. If it for some reason doesn't work, read the tutorial again and check that you've followed it to the point. Try restarting Sublime before opening an issue!