ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

LSP-angular

sublimelsp ST3

Angular 语言服务的便捷插件

详细信息

  • 3.0.2
    2.2.1
  • github.com
  • github.com
  • 3周前
  • 56分钟前
  • 4年前

安装

  • 总数 3K
  • Win 1K
  • Mac 726
  • Linux 747
8月6日 8月5日 8月4日 8月3日 8月2日 8月1日 7月31日 7月30日 7月29日 7月28日 7月27日 7月26日 7月25日 7月24日 7月23日 7月22日 7月21日 7月20日 7月19日 7月18日 7月17日 7月16日 7月15日 7月14日 7月13日 7月12日 7月11日 7月10日 7月9日 7月8日 7月7日 7月6日 7月5日 7月4日 7月3日 7月2日 7月1日 6月30日 6月29日 6月28日 6月27日 6月26日 6月25日 6月24日 6月23日 6月22日
Windows 2 1 0 1 1 1 1 4 1 0 1 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
Mac 1 1 0 2 0 0 0 0 1 0 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
Linux 2 1 1 0 1 0 0 0 1 0 1 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

读我

源代码
raw.githubusercontent.com

LSP-angular

这是一个助手软件包,它会自动为您安装和更新 Angular 语言服务器

安装

  • 从包管理控制中安装 LSPNgx HTMLLSP-angular
  • 重启 Sublime。

配置

使用 首选项: LSP-angular 设置 命令或从 Sublime 菜单(首选项 > 软件包设置 > LSP > 服务器 > LSP-angular)打开配置文件。

版本控制

这个语言服务扩展依赖于 @angular/language-servertypescript 软件包来处理其后端。@angular/language-server 总是和扩展一起提供,并且总是最新的版本。

对于需要较旧版本 Angular 服务器的用户,可以这样指定本地 @angular/language-server

在 ST 项目文件中重写启动命令,以指向本地 @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"
        ]
      },
    }
  }
}