|
2 | 2 | "publisher": "AMiner", |
3 | 3 | "name": "codegeex", |
4 | 4 | "displayName": "CodeGeeX", |
5 | | - "description": "We introduce CodeGeeX, a large-scale multilingual code generative model with 13 billion parameters, pretrained on a large code corpus of more than 20 programming languages.", |
6 | | - "homepage": "https://models.aminer.cn/codegeex", |
| 5 | + "description": "CodeGeeX is an AI-based coding assistant, which can suggest code in the current or following lines. It is powered by a large-scale multilingual code generation model with 13 billion parameters, pretrained on a large code corpus of more than 20 programming languages.", |
| 6 | + "homepage": "https://codegeex.ai", |
7 | 7 | "repository": { |
8 | 8 | "type": "git", |
9 | 9 | "url": "https://github.com/THUDM/CodeGeeX" |
10 | 10 | }, |
11 | 11 | "icon": "codegeex_logo.png", |
12 | | - "version": "1.1.0", |
| 12 | + "version": "1.1.2", |
13 | 13 | "engines": { |
14 | 14 | "vscode": "^1.68.0" |
15 | 15 | }, |
|
19 | 19 | "Machine Learning", |
20 | 20 | "Other" |
21 | 21 | ], |
| 22 | + "keywords": [ |
| 23 | + "python", |
| 24 | + "go", |
| 25 | + "java", |
| 26 | + "javascript", |
| 27 | + "c++", |
| 28 | + "c#", |
| 29 | + "php", |
| 30 | + "typescript", |
| 31 | + "ai", |
| 32 | + "autocomplete", |
| 33 | + "inline completion" |
| 34 | + ], |
22 | 35 | "activationEvents": [ |
23 | 36 | "*" |
24 | 37 | ], |
|
106 | 119 | "type": "object", |
107 | 120 | "additionalProperties": "string", |
108 | 121 | "default": {}, |
109 | | - "description": "DisabledFor is a list of specific languages that will be disabled temporarily for the extension, you can set manully language* as the key and then set the value true to disable a language or false to re-enable it in workspace settings (this will need to restart vscode) or do this by clicking icon in the status bar.\n*language should be a valid vscode language id, like python, shellscript, csharp, objective-cpp and etc. You can click the language option in status bar to find the list and language ids are in the parentheses." |
| 122 | + "markdownDescription": "DisabledFor is a list of specific languages that will be disabled temporarily for the extension, you can set manully language* as the key and then set the value true to disable a language or false to re-enable it settings (this will need to restart vscode) or do this by clicking icon in the status bar. <br/>* *language should be a valid vscode language id, like python, shellscript, csharp, objective-cpp and etc.* You can click the language option in status bar to find the list and language ids are in the parentheses." |
110 | 123 | }, |
111 | 124 | "Codegeex.EnableExtension": { |
112 | 125 | "type": "boolean", |
113 | 126 | "default": true, |
114 | | - "description": "This will decide if you enable the stealth mode of the extension." |
| 127 | + "description": "Check this if you want to enable stealth mode of the extension." |
115 | 128 | }, |
116 | 129 | "Codegeex.GenerationPreference": { |
117 | 130 | "type": "string", |
|
125 | 138 | "Codegeex.OnlyKeyControl": { |
126 | 139 | "type": "boolean", |
127 | 140 | "default": null, |
128 | | - "description": "This will decide if you want to get suggestions only in need by pressing alt/option+n" |
| 141 | + "description": "Check this if you want to get suggestions only in need by pressing alt/option+\\ in stealth mode." |
129 | 142 | }, |
130 | 143 | "Codegeex.PromptTemplates(Experimental)": { |
131 | 144 | "type": "object", |
|
143 | 156 | "Codegeex.Survey": { |
144 | 157 | "type": "boolean", |
145 | 158 | "default": null, |
146 | | - "markdownDescription": "This is decided by if you have chosen to make a survey. If you want to make the survey again, you can click the link:<br>[EN]:https://wj.qq.com/s2/11260705/6cd6/<br>[CN]:https://wj.qq.com/s2/11259178/fd49/" |
| 159 | + "markdownDescription": "This is decided by if you have chosen to make a survey. If you want to make the survey again, you can click the link: [survey](https://wj.qq.com/s2/11260705/6cd6/)/[问卷](https://wj.qq.com/s2/11259178/fd49/)" |
147 | 160 | }, |
148 | 161 | "Codegeex.Translation": { |
149 | 162 | "type": "string", |
|
152 | 165 | "comment" |
153 | 166 | ], |
154 | 167 | "default": "comment", |
155 | | - "description": "When inserting code translated, you want to ___ original code" |
| 168 | + "description": "When inserting code translated, you want to ___ original code when you use the translation mode." |
156 | 169 | } |
157 | 170 | } |
158 | 171 | } |
|
171 | 184 | }, |
172 | 185 | { |
173 | 186 | "command": "codegeex.new-completions", |
174 | | - "key": "Alt+N", |
| 187 | + "key": "Alt+\\", |
175 | 188 | "when": "editorFocus && !editorReadonly" |
176 | 189 | }, |
177 | 190 | { |
|
0 commit comments