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

Gleam

by digitalcora ST4

Gleam syntax support for Sublime Text

Details

Installs

  • Total 89
  • Win 14
  • Mac 46
  • Linux 29
Jun 10 Jun 9 Jun 8 Jun 7 Jun 6 Jun 5 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
Windows 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 0 0 0 0
Mac 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 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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

Readme

Source
raw.​githubusercontent.​com

Sublime Text + Gleam

Gleam syntax support for Sublime Text.

light screenshot dark screenshot

Installation

This package is available on Package Control. To install:

  1. Open the command palette (Ctrl/Cmd+Shift+P)
  2. Select Package Control: Install Package
  3. Select Gleam

Formatting

This package does not provide code formatting, but you can easily set this up using the Fmt package. Follow the instructions to install it and open the package settings, then add this rule:

{
  "rules": [
    {
      "selector": "source.gleam",
      "cmd": ["gleam", "format", "--stdin"],
      "format_on_save": true,
      "merge_type": "diff",
    },
  ],
}

With "format_on_save": true, Gleam code will be formatted whenever you save. To instead format on demand, use Fmt: Format Buffer in the command palette. See the Fmt README for instructions on binding this to a key combo.

The above cmd should work if you have the gleam binary in your path, in the same environment Sublime Text is running on. Other examples:

  • with Gleam installed using ASDF: ["~/.asdf/shims/gleam", "format", "--stdin"]
  • with Sublime Text on Windows and Gleam on WSL: ["wsl", "gleam", "format", "--stdin"]

Compatibility

This package is developed for Sublime Text 4+, and is not available in Package Control on older versions. It can be installed manually in Sublime Text 3, but this is unsupported, and bugs that only appear in ST3 will not be fixed.

Manual Installation

  1. Download the .zip for the desired version from the GitHub Releases page
  2. Rename this file (without unzipping it) to Gleam.sublime-package
  3. Place the file in your Sublime Text “Installed Packages” directory

“Installed Packages” can be found using Preferences → Browse Packages within Sublime Text (go up one level from the directory this opens).