如何获得字体脚本与崇高文本3的支持?

我目前在角度和我得到良好的支持与崇高的文字打字。

How can I get support of TypeScript with my Sublime Text editor?

我试着按 Shift + Ctrl + P,然后键入 打字机,但是没有得到任何 TypeScript 结果。

我已经通过 official TypeScript website和我已经克隆崇高的文本到我的电脑。

我已经在我的笔记本电脑上安装了 TypeScript-接下来我可以做什么?

84885 次浏览

您可以安装 Microsoft 编写的用于升华的 TypeScript 插件。我会建议通过 软件包控制安装它,以确保它保持最新。

这个插件提供了一个语法突显和构建系统,用于使用 node.js 和 TypeScript 编译器来构建 TypeScript 应用程序(大概就是上面提到的下载)。

链接的页面包括安装说明以及关于它为您做什么和如何使用它的信息。

You can do this by pressing Ctrl + shift + p write ipc and press enter to open the Package Manager. After that, type TypeScript and choose the first option which is published by http://typescriptlang.org.

注意: 对于 Mac OS 用户,使用 Command (⌘) + shift + p代替 Ctrl + shift + p

如果您正在使用 mac 操作系统 然后使用以下命令

cd ~/"Library/Application Support/Sublime Text 3/Packages"
git clone --depth 1 https://github.com/Microsoft/TypeScript-Sublime-Plugin.git TypeScript

之后按 cmd + shift + p在崇高的文本3 然后键入“ TypeScript”并选择“ TypeScript”,然后按回车键。

在 Windows 上:

cd "%APPDATA%\Sublime Text 3\Packages"
git clone --depth 1 https://github.com/Microsoft/TypeScript-Sublime-Plugin.git TypeScript

然后按 Ctrl + shift + p 写安装包并按回车,然后键入“ TypeScript”并选择“ TypeScript”并按回车。

为了 Ubuntu

cd /home/userNameOftheMachine/.config/sublime-text-3/Packages


git clone --depth 1 https://github.com/Microsoft/TypeScript-Sublime-Plugin.git TypeScript

然后查看 > 同步 > 打字稿

按: CTRL + SHIFT + P 然后输入“ install package” 然后输入“打字稿” click to install and Restart your Sublime Text editor. 看到你的密码。 在此输入图像描述

(如果你在 Mac 上,在下面的关键组合中按 CMD而不是 Ctrl。)

Press Ctrl + Shift + P and type "Install package". If "Install package control" appears as an option, pick it, and then press Ctrl + Shift + P again and type "Install package". Pick "Package Control: Install Package". Wait a moment and a new dropdown menu will appear. Type "TypeScript" and pick the option with that exact name.

If it's not already done, you first have to install the 安装程序, like that:

  • Ctrl + shift + p
  • 键入“ inst”并选择 Install Package Control

出现以下弹出窗口:

包控制已成功安装

使用命令面板并键入“安装包”开始

现在您可以像这样安装 打印稿支持:

  • Ctrl + shift + p
  • 键入“ inst”并选择 Package Control: Install Package
  • 键入“ Type”并选择“ Typecript”

现在您可以打开一个 file.ts并将类型更改为在编辑器的右下方单击 打印稿,其中默认选择了 纯文本

有一个比 微软更新的软件包可用。使用这个官方的 LSP-打字稿插件。