1 Star 0 Fork 22

子宽/vscode_Chinese_Input_Assistant

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
package.json 2.29 KB
一键复制 编辑 原始数据 按行查看 历史
不知 提交于 2020-07-14 19:47 . 1.1.2 五笔 86
{
"name": "ChineseInputAssistant",
"displayName": "中文代码快速补全",
"description": "中文标识符(变量、方法名等)无需切换中文输入法即有补全提示",
"version": "1.1.2",
"publisher": "CodeInChinese",
"engines": {
"vscode": "^1.38.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*",
"onCommand:插件命令"
],
"main": "./插件.js",
"contributes": {
"commands": [
{
"command": "插件命令",
"title": "中文插件"
}
],
"configuration": {
"title": "中文代码快速补全",
"properties": {
"中文代码快速补全.提示方式": {
"type": "string",
"default": "全拼",
"enum": [
"全拼",
"五笔98全码",
"五笔98四码",
"五笔86全码",
"五笔86四码",
"小鹤双拼",
"搜狗双拼",
"微软双拼",
"自然码双拼",
"紫光双拼",
"拼音加加双拼"
],
"enumDescriptions": []
}
}
},
"snippets": [
{
"language": "javascript",
"path": "./片段/javascript.json"
},
{
"language": "python",
"path": "./片段/python.json"
}
]
},
"scripts": {
"test": "node ./test/runTest.js"
},
"repository": {
"type": "git",
"url": "https://gitee.com/Program-in-Chinese/vscode_Chinese_Input_Assistant.git"
},
"dependencies": {
"pinyin-data": "1.0.0",
"wubi-code-data": "1.0.2"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.21",
"@types/vscode": "^1.38.0",
"eslint": "^5.13.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"typescript": "^3.3.1",
"vscode-test": "^1.2.0"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/zi_kuan/vscode_Chinese_Input_Assistant.git
git@gitee.com:zi_kuan/vscode_Chinese_Input_Assistant.git
zi_kuan
vscode_Chinese_Input_Assistant
vscode_Chinese_Input_Assistant
master

搜索帮助