-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"name": "autopath-copy-reference",
"displayName": "AutoPath Copy Reference",
"description": "Minimal VS Code extension to copy workspace-relative line references for Warp handoff.",
"version": "0.0.1",
"publisher": "local",
"private": true,
"engines": {
"vscode": "^1.85.0"
},
"repository": {
"type": "git",
"url": "https://github.com/kockono/autopath-copy-reference"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:autopath.copyReference",
"onCommand:autopath.copyReferenceWithCode"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "autopath.copyReference",
"title": "AutoPath: Copy Reference"
},
{
"command": "autopath.copyReferenceWithCode",
"title": "AutoPath: Copy Reference With Code"
}
],
"keybindings": [
{
"command": "autopath.copyReference",
"key": "ctrl+alt+shift+g",
"when": "editorTextFocus"
},
{
"command": "autopath.copyReferenceWithCode",
"key": "ctrl+alt+shift+c",
"when": "editorTextFocus"
}
]
}
}