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

LSP-angular

by sublimelsp ST3

Convenience plugin for Angular Language Service

Details

  • 3.0.2
    2.2.1
  • github.​com
  • github.​com
  • 2 weeks ago
  • 1 hour ago
  • 4 years ago

Installs

  • Total 3K
  • Win 1K
  • Mac 723
  • Linux 740
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13
Windows 0 1 3 2 0 2 0 0 0 1 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 0 1 1 0 2 1 0 0 1 2 0 1 0 1 2 0 2 1
Mac 0 0 0 0 2 0 0 0 1 0 0 1 0 0 0 0 2 1 1 0 0 0 0 1 0 0 1 0 1 0 0 0 3 1 0 4 0 2 1 1 0 0 0 0 0
Linux 0 0 1 0 1 1 1 0 0 1 0 0 1 0 0 2 0 1 2 0 0 0 1 0 1 1 2 0 0 1 0 1 1 0 2 1 1 1 3 1 1 0 0 0 2

Readme

Source
raw.​githubusercontent.​com

LSP-angular

This is a helper package that automatically installs and updates the Angular Language Server for you.

Installation

  • Install LSP, Ngx HTML and LSP-angular from Package Control.
  • Restart Sublime.

Configuration

Open configuration file using command palette with Preferences: LSP-angular Settings command or opening it from the Sublime menu (Preferences > Package Settings > LSP > Servers > LSP-angular).

Versioning

This language service extension relies on the @angular/language-server and typescript packages for its backend. @angular/language-server is always bundled with the extension, and is always the latest version at the time of the release.

For people who need an older version of the angular server, this is how to point to a local @angular/language-server.

Override the start command in a ST project file, to point to a local @angular/language-server

{
  "folders": [
    {
      "path": "."
    }
  ],
  "settings": {
    "LSP": {
      "LSP-angular": {
        "command": [
          "${node_bin}",
          "${folder}/node_modules/@angular/language-server/index.js", // adjust the path based on your project
          "--ngProbeLocations", "${folder}/node_modules",  // adjust the path based on your project
          "--tsProbeLocations", "${folder}/node_modules",  // adjust the path based on your project
          "--stdio"
        ]
      },
    }
  }
}