LSP-PowerShellEditorServices
用于安装和升级 PowerShellEditorServices 语言服务器的便捷插件
详细信息
安装
- 总数 3K
- Win 2K
- Mac 264
- Linux 293
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 | 3 | 5 | 1 | 3 | 4 | 1 | 3 | 8 | 4 | 3 | 4 | 2 | 1 | 2 | 0 | 4 | 0 | 3 | 2 | 2 | 2 | 4 | 2 | 3 | 1 | 4 | 0 | 3 | 1 | 4 | 1 | 2 | 3 | 0 | 3 | 4 | 4 | 2 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 2 |
Mac | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 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 | 0 |
Linux | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
LSP-PowerShellEditorServices
用于安装和运行的便捷插件PowerShellEditorServices语言服务器。
安装
安装 PowerShell 运行时(例如,您可以在终端中运行 Windows 上的
powershell.exe
或 macOS/Linux 上的pwsh
)。安装用于语法高亮的 PowerShell 软件包。
或者,您也可以使用 Michael Lyons 的PowerShell 语法重写。从 Package Control 安装 LSP。
从 Package Control 安装 LSP-PowerShellEditorServices。
注意
该插件不提供分发,但下载语言服务器的二进制文件
- 从: https://github.com/PowerShell/PowerShellEditorServices/releases/
- 到:
$DATA/Package Storage
配置
通过运行“命令面板:LSP-PowerShellEditorServices 设置”从命令面板或通过主菜单(首选项 > 包设置 > LSP > 服务器 > LSP-PowerShellEditorServices
)打开配置文件。
全局脚本分析设置文件
"powershell.scriptAnalysis.settingsPath": "PSScriptAnalyzerSettings.psd1"
默认情况下,语言服务器仅在工作区文件夹中查找脚本分析设置。
- 指定相对路径时以工作区文件夹为根进行解析。
- 可以指定绝对路径以强制使用特定的设置文件。
要同时提供全局回退和特定于项目的文件…
- 请在
LSP-PowerShellEditorServices.sublime-settings
中指定绝对路径。
{
"settings":
{
"powershell.scriptAnalysis.settingsPath": "${packages}/User/PSScriptAnalyzerSettings.psd1",
},
}
- 通过
<My Project>.sublime-project
指定特定于项目的设置中的相对路径。
{
"folders": [
{
"path": ".",
},
],
"settings":
{
"LSP":
{
"PowerShellEditorServices": {
"settings": {
"powershell.scriptAnalysis.settingsPath": "PSScriptAnalyzerSettings.psd1",
},
},
},
},
}