|
@@ -2,7 +2,7 @@
|
|
|
"name": "copy-ai-ctx",
|
|
"name": "copy-ai-ctx",
|
|
|
"displayName": "Copy AI Ctx",
|
|
"displayName": "Copy AI Ctx",
|
|
|
"description": "复制上下文供AI助手使用 —— 复制文件、内容的引用信息",
|
|
"description": "复制上下文供AI助手使用 —— 复制文件、内容的引用信息",
|
|
|
- "version": "0.2.9",
|
|
|
|
|
|
|
+ "version": "0.2.10",
|
|
|
"publisher": "fivesay",
|
|
"publisher": "fivesay",
|
|
|
"engines": {
|
|
"engines": {
|
|
|
"vscode": "^1.85.0"
|
|
"vscode": "^1.85.0"
|
|
@@ -20,7 +20,12 @@
|
|
|
"claude",
|
|
"claude",
|
|
|
"pi"
|
|
"pi"
|
|
|
],
|
|
],
|
|
|
- "activationEvents": [],
|
|
|
|
|
|
|
+ "activationEvents": [
|
|
|
|
|
+ "onCommand:copy-ai-ctx.copySelection",
|
|
|
|
|
+ "onCommand:copy-ai-ctx.copyFile",
|
|
|
|
|
+ "onCommand:copy-ai-ctx.copySelectedFiles",
|
|
|
|
|
+ "onCommand:copy-ai-ctx.copyMultiFiles"
|
|
|
|
|
+ ],
|
|
|
"main": "./dist/extension.js",
|
|
"main": "./dist/extension.js",
|
|
|
"contributes": {
|
|
"contributes": {
|
|
|
"commands": [
|
|
"commands": [
|
|
@@ -70,22 +75,22 @@
|
|
|
},
|
|
},
|
|
|
"keybindings": [
|
|
"keybindings": [
|
|
|
{
|
|
{
|
|
|
- "key": "shift+alt+c",
|
|
|
|
|
|
|
+ "key": "ctrl+alt+c",
|
|
|
"command": "copy-ai-ctx.copySelection",
|
|
"command": "copy-ai-ctx.copySelection",
|
|
|
"when": "editorHasSelection"
|
|
"when": "editorHasSelection"
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
- "key": "shift+alt+c",
|
|
|
|
|
|
|
+ "key": "ctrl+alt+c",
|
|
|
"command": "copy-ai-ctx.copyFile",
|
|
"command": "copy-ai-ctx.copyFile",
|
|
|
"when": "!editorHasSelection && editorFocus"
|
|
"when": "!editorHasSelection && editorFocus"
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
- "key": "shift+alt+c",
|
|
|
|
|
|
|
+ "key": "ctrl+alt+c",
|
|
|
"command": "copy-ai-ctx.copySelectedFiles",
|
|
"command": "copy-ai-ctx.copySelectedFiles",
|
|
|
"when": "explorerViewletVisible && !listMultiSelection"
|
|
"when": "explorerViewletVisible && !listMultiSelection"
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
- "key": "shift+alt+c",
|
|
|
|
|
|
|
+ "key": "ctrl+alt+c",
|
|
|
"command": "copy-ai-ctx.copyMultiFiles",
|
|
"command": "copy-ai-ctx.copyMultiFiles",
|
|
|
"when": "explorerViewletVisible && listMultiSelection"
|
|
"when": "explorerViewletVisible && listMultiSelection"
|
|
|
}
|
|
}
|