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

Live​Code

by trevordevore ST3

LiveCode Language Package for SublimeText

Details

Installs

  • Total 17K
  • Win 14K
  • Mac 2K
  • Linux 2K
Apr 26 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
Windows 1 1 2 2 3 1 1 3 2 0 1 1 3 2 2 2 0 5 1 1 3 1 1 6 2 3 2 1 1 2 0 1 1 0 2 0 3 0 4 3 0 1 1 2 1 1
Mac 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 0 1 1 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 2 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

livecode-sublimetext

LiveCode Package for Sublime Text

What does this package do?

The package adds syntax highlighting, auto completion, and symbol indexing (on, command, function, getprop/setprop) for LiveCode files. It is intended for editing script only stacks. The package includes a number of snippets that provide auto completion when creating new handlers, if-then statements, try/catch blocks, etc.

Auto complete is also provided for all keywords, properties, functions, and commands.

Notifying LiveCode of script only stack updates

When using the LiveCode package you can configure a Sublime Text project to send a request to a server each time you save a LiveCode file. This allows you to notify a stack in LiveCode that is accepting connections about updates to scripts.

To send requests to a specified server and port whenever LiveCode files are saved, create a Sublime Text project for your folder tree. Once you have done that, edit the .sublime-project file. Here is an example. You will need to modify “MyProject” and possibly the port number that you are using.

{
    "folders":
    [
        {
            "folder_exclude_patterns":
            [
                "_builds"
            ],
            "path": ".",
            "name": "MyProject",
        }
    ],
    "livecode":
    {
          "notify_on_save": true,
          "notify_server":
          {
            "host": "localhost",
            "port": 61373,
            "debug": false
          }
    }
}

Suggested Configuration

Here are some suggested user configuration settings for Sublime Text:

{
    "auto_complete": false,
    "auto_complete_commit_on_tab": true,
    "translate_tabs_to_spaces": true,
    "trim_trailing_white_space_on_save": true,
    "ensure_newline_at_eof_on_save": true,
    ...
}

auto_complete: Set to false so that auto complete suggestions don't appear while typing. Press Control + Spacebar to show a list of suggestions. auto_complete_commit_on_tab: Press TAB to auto complete using the first match. The TAB key can be useful when you want to auto complete a variable name you are typing. translate_tabs_to_spaces: Always store spaces instead of tabs. trim_trailing_white_space_on_save: Remove any trailing white space from all lines when saving. This helps you avoid your version control system seeing files as being changed when there is only trailing white space. ensure_newline_at_eof_on_save: Always add a newline at the end of the file when saving.

Screencasts

Plugin installation

Please use Package Control to install the linter plugin. This will ensure that the plugin will be updated when new versions are available. If you want to install from source so you can modify the source code, you probably know what you are doing so we won’t cover that here.

To install via Package Control, do the following:

  1. Within Sublime Text, bring up the Command Palette and type install. Among the commands you should see Package Control: Install Package. If that command is not highlighted, use the keyboard or mouse to select it. There will be a pause of a few seconds while Package Control fetches the list of available plugins.

  2. When the plugin list appears, type livecode. Among the entries you should see LiveCode. If that entry is not highlighted, use the keyboard or mouse to select it.