1

我想在 Sublime Text 2 的Package Control中创建一个非常简单的 TypeScript 包

我从未开发过 Sublime Text 扩展/插件,但我只想打包 2 个现有文件

  • TypeScript 语法高亮文件typescript.tmlanguage(来自这里
  • TypeScript 构建系统typescript.sublime-build(感谢这个答案

根据文档的第一步是

将您的插件托管在 GitHub 或 BitBucket 上自己的存储库中。
仅包含一个插件,并将插件文件放在 repo 的根目录中。

我需要创建一个插件吗?我可以分叉一个简单的基本的吗?(发现很多复杂的)

编辑:

找到这个https://github.com/danro/LESS-sublime

并根据示例https://github.com/ernation/sublime-text-2-typescript创建了这个

就这样?我应该摆脱文件夹吗?

4

2 回答 2

2

据我了解(我自己将第一次经历此过程)您的文件夹是包,它是添加到包控件中的内容。

包里面可以有很多不同的东西,构建设置、插件、代码片段、键盘快捷键等等......

所以是的,只要文件夹中的两个文件就足够了。

于 2012-10-16T18:55:38.383 回答
1

I have not tested your package to see if it works. But what you need to do now is:

  1. a "fork" of sublime package_control_channel repository on this link

  2. change the repositories.json file according to the specification and this on Step 12

  3. Make a pull request to Sublime Text 2 package_control_channel repository

If your pull request is accepted it will become part of the official repository of Sublime Text 2.

于 2012-10-15T22:12:24.063 回答