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

LSP-angular

by sublimelsp ST3

Convenience plugin for Angular Language Service

Details

  • 4.0.0
    2.2.1
  • github.​com
  • github.​com
  • 2 weeks ago
  • 1 hour ago
  • 5 years ago

Installs

  • Total 3K
  • Win 2K
  • Mac 875
  • Linux 913
Aug 26 Aug 25 Aug 24 Aug 23 Aug 22 Aug 21 Aug 20 Aug 19 Aug 18 Aug 17 Aug 16 Aug 15 Aug 14 Aug 13 Aug 12 Aug 11 Aug 10 Aug 9 Aug 8 Aug 7 Aug 6 Aug 5 Aug 4 Aug 3 Aug 2 Aug 1 Jul 31 Jul 30 Jul 29 Jul 28 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
Windows 0 1 0 0 1 0 2 2 0 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 1 2 1 0 0 2 1 2 0 0 0 0 3 0 1 1 0
Mac 0 0 0 0 0 1 2 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 2 0 0 1 0 0
Linux 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 2 0 0 2 0 0 2 1 1 1 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 1 1 0 0 0 1

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"
        ]
      },
    }
  }
}