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

Gleam

by digitalcora ST4

Gleam syntax support for Sublime Text

Details

Installs

  • Total 228
  • Win 53
  • Mac 100
  • Linux 75
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 0 0 0 1 2 0 0 0 1 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 1 1 0 0 1 0 2 4
Mac 0 1 1 0 0 1 0 0 0 0 0 1 0 1 0 1 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 2 0 1 0 1 0 1 1 0 1 3 0 1 5 1
Linux 0 0 0 0 0 0 0 1 0 1 1 2 0 0 0 0 0 0 0 1 0 2 1 1 0 1 0 0 0 1 1 0 1 0 0 0 2 0 2 1 1 0 0 1 6 4

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

LSP Integration

The LSP package enables improved autocomplete, go-to-definition, formatting, “hover docs”, compiler errors and warnings in the editor, and more. To set it up, install the package and open its settings (Preferences: LSP Settings in the command palette), then add this config:

{
  "clients": {
    "gleam": {
      "enabled": true,
      "command": ["gleam", "lsp"],
      "selector": "source.gleam"
    }
  },
  "lsp_format_on_save": true
}
  • If you don't want format-on-save, leave out the global lsp_format_on_save option (the default is false) and instead use LSP: Format File in the command palette, or bind this to a keyboard shortcut.

  • If you have Gleam installed using asdf or a similar version manager, the command should instead be e.g. ["~/.asdf/shims/gleam", "lsp"].

  • If Sublime Text and Gleam are installed in different environments (e.g. Sublime on Windows and Gleam on WSL), the LSP package unfortunately won't work, since it does not support path translation. Note in the specific case of WSL2 you can install Sublime inside the Linux environment and use it that way, at the cost of some UI quirks.

Fmt Integration

The LSP package (see above) includes code formatting in the editor, but if you don't want to or can't use the LSP, you can still get formatting 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",
    },
  ],
}
  • If you don't want format-on-save, leave out the format_on_save option and instead use Fmt: Format Buffer in the command palette. See the Fmt README for instructions on binding this to a keyboard shortcut.

  • If you have Gleam installed using asdf or a similar version manager, the cmd should be modified in the same way as the LSP instructions, above. This approach also works with WSL (prepend "wsl") or other cases where Gleam and Sublime are installed in different environments.

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).