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

Starbound Lua

by UnknownX7 ALL

Syntax highlighter and autocompletions for the Starbound Lua API

Details

Installs

  • Total 827
  • Win 620
  • Mac 150
  • Linux 57
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 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6 Mar 5
Windows 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Starbound Lua

This plugin enables syntax highlighting and autocompletion for Starbound Lua in Sublime Text 2 or Sublime Text 3. (Sublime Text 3 is HIGHLY recommended!)

To install this, it is recommended that you use Package Control to automatically receive the latest updates and make the entire process much simpler. This will ensure that you do not need to check this page for updates every time an update is released for Starbound as the API is constantly changing and being added to.

Package Control Installation:

  1. Open Sublime Text and press Shift+Ctrl+P.
  2. Type install and press enter.
  3. Another text box should appear, type Starbound and you should see this plugin highlighted. Press Enter to install it.

Sublime Text 3 (and possibly 2)

  1. Once you have it installed you may need to disable the default Lua syntax (Sublime will probably try to suggest functions from default Lua). Press Shift+Ctrl+P again.
  2. Type disable and press enter.
  3. Type lua and press enter.

Manual Installation:

  1. Download this Git Repository's master branch as a .zip file. (Or you can download the latest release.)
  2. Navigate to Preferences > Browse Packages....
  3. Put the folder from the .zip into the location that was opened.
  4. Restart Sublime.

Sublime Text 3 (and possibly 2)

  1. Once you have it installed you may need to disable the default Lua syntax (Sublime will probably try to suggest functions from default Lua). Navigate to Preferences > Settings - User.
  2. Add the following text:
{
    "ignored_packages":
    [
        "Vintage",
        "Lua"
    ]
}

Usage

Navigate to View > Syntax > Starbound Lua to apply the syntax to the current file and any newly opened files.

There are also custom templates for groups of specific lua hooks with documentation available. To use them, type TEMPLATE and use the arrow keys to select the correct template for your .lua file, then press Tab or Enter. These are intended for blank files and will immediately paste all known lua hooks for the selected category. You may press Tab again multiple times to highlight a predetermined order of text blocks for ease of editing. Moving your text cursor outside of the range of one of these text blocks will end the use of Tab selecting for all code snippets. These snippets will use hook information from the developers when available. Otherwise it is information gathered by trial and error.

If you have other custom Lua syntaxes…

If their scope is not correctly set, their functions and snippets will be suggested too. You can also disable them by doing the same steps above that you may have used for the default Lua syntax. (This syntax should never interfere with any other syntax. Please report it to me if it does.)

Suggestions

Open an issue if you would like to suggest anything. Or you can find me on the #starbound and ##starbound-modding IRC channels as UnknownX. (or the forums)

Nightly Branch

This branch is no longer needed and has been discontinued. This branch is for upcoming changes to the Lua API. This will not be merged with the master branch until a stable update is released and changes are verified.