因为vscode 添加用户片段需要的是字符串数组,手动添加数组(body)较为麻烦,所以写了一个小工具进行 template 转成数组, template 就简单多了.
并且 有时候一个 snippets 适合多种文件格式(比如 typescript 和 JavaScript 经常都会用到相同的 snippets),所以我使用 type 属性进行配置适用文件,这样就共享snippets给不同语言了了.(不需要复制黏贴了爽歪歪)
直接使用 release中的插件文件安装到 vscode 中即可使用。
gen
就是打包成 vscode 可用的json格式
yarn gen
push
就是复制配置到 vscode 配置中(我安装的是 用户目录 所以是 ~appdata/roaming/code/snippets/下 这个是直接覆盖的 所以以防万一你可以先备份自己的配置文件再进行发布
yarn push
install.local
就以上两者合一,重新生成 snippets 并复制到本地snippets 目录。
方法已经封装, 只需要运行以下命令
yarn build:vscode
https://github.com/brpaz/jetbrains-plugin-vscode-snippets
感兴趣的可以fork 我的仓库,新需求也可以提 pr 到我仓库中 如果觉得好可以加星哦.
// Place your snippets for vue here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
## 直接console.log 大量的时候无法判断变量到底是个啥子,还是加个字符串在前头比较舒服
console.log(`$1`,$1)
全局性的快捷键我喜欢+! 表示 用于对应 原本 vscode 就有的 !html 之类的
这个的好处就是可以快速生成 文件头 还有 react-native 的基础组件架构
虽然file_name的正则写的很不友好,但是能用(求优化 当是 index.js 用 父组件当组件名称, 当是 xxx.js 直接用 父组件当组件名称.
- 分语言打包snippets(有时候可能你不想打包全功能)
- 自动化CI CD
- 自动生成 ReadMe 文档?
- [*] 自动打包生成 vscode snippets 格式
- [*] 自动打包生成 vscode 依赖
- 自动生成 vs 所需的xml 格式
- 自动生成 vs 依赖
- 自动生成 jetbrains 的格式
- 自动生成 jetbrains 依赖