-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "python-quick-intent",
"displayName": "Python Quick Intent",
"description": "PyCharm-style intentions for Python in Cursor/VS Code: import, AI fix (Alt+Enter), and Quick Edit.",
"version": "0.4.6",
"publisher": "rufat",
"license": "MIT",
"readme": "readme.md",
"changelog": "CHANGELOG.md",
"repository": {
"type": "git",
"url": "https://github.com/rufatpro/plugins.git"
},
"homepage": "https://github.com/rufatpro/plugins",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Programming Languages",
"Machine Learning",
"Other"
],
"icon": "images/icon.png",
"keywords": [
"python",
"pycharm",
"quick fix",
"intention",
"import",
"cursor",
"alt+enter"
],
"activationEvents": [
"onLanguage:python"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "pythonQuickIntent.showMenu",
"title": "Quick Intent: Show Menu",
"category": "Python Quick Intent"
},
{
"command": "pythonQuickIntent.addImport",
"title": "Quick Intent: Add Import",
"category": "Python Quick Intent"
},
{
"command": "pythonQuickIntent.fixWithAI",
"title": "Quick Intent: Fix with AI",
"category": "Python Quick Intent"
},
{
"command": "pythonQuickIntent.aiComplete",
"title": "Quick Intent: Quick Edit",
"category": "Python Quick Intent"
}
],
"menus": {
"editor/context": [
{
"command": "pythonQuickIntent.showMenu",
"group": "pythonQuickIntent@1",
"when": "editorLangId == python"
}
]
},
"keybindings": [
{
"command": "pythonQuickIntent.showMenu",
"key": "alt+enter",
"when": "editorLangId == python && editorTextFocus && !editorReadonly"
},
{
"command": "pythonQuickIntent.addImport",
"key": "alt+i",
"when": "editorLangId == python && editorTextFocus && !editorReadonly"
},
{
"command": "pythonQuickIntent.fixWithAI",
"key": "ctrl+alt+enter",
"when": "editorLangId == python && editorTextFocus"
},
{
"command": "pythonQuickIntent.aiComplete",
"key": "ctrl+shift+space",
"when": "editorLangId == python && editorTextFocus && !editorReadonly"
}
]
},
"scripts": {
"package": "vsce package",
"lint": "echo \"No lint configured\""
},
"vsce": {
"baseContentUrl": "https://github.com/rufatpro/plugins/tree/main/vscode/python-quick-intent"
}
}