-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "auto-switch-input-method",
"displayName": "Auto Switch Input Method",
"version": "1.0.0",
"publisher": "me",
"repository": {
"type": "git",
"url": "https://github.com/craze429/auto-switch-input-method"
},
"engines": {
"vscode": "^1.80.0"
},
"activationEvents": [
"onStartupFinished"
],
"extensionKind": [
"ui"
],
"main": "./extension.js",
"contributes": {
"configuration": {
"title": "Auto Switch Input Method",
"properties": {
"autoSwitchInputMethod.imSelectPath": {
"type": "string",
"default": "/path/to/im-select",
"description": "The full path to im-select executable for switching input methods.",
"scope": "machine"
},
"autoSwitchInputMethod.defaultInputMethod": {
"type": "string",
"default": "",
"markdownDescription": "The default input method to switch to when editor gains focus. Use `im-select` command to get your current input method code.",
"scope": "machine"
},
"autoSwitchInputMethod.switchDelay": {
"type": "number",
"default": 100,
"description": "Delay in milliseconds before switching input method when editor gains focus",
"scope": "application"
},
"autoSwitchInputMethod.verbose": {
"type": "boolean",
"default": false,
"description": "Enable verbose debug logging in console",
"scope": "application"
}
}
}
}
}