-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
27 lines (27 loc) · 1.53 KB
/
extension.json
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
{
"activationEvents": ["*"],
"bugs": "https://github.com/eahanson/copy-path.novaextension/issues",
"categories": ["commands"],
"commands": { "editor": [
{ "title": "Copy Absolute Path", "command": "copy-path.absolute" },
{ "title": "Copy Absolute Path with Line Number", "command": "copy-path.absolute-line" },
{ "title": "Copy Absolute Path with Line & Column Number", "command": "copy-path.absolute-line-column" },
{ "separator": true},
{ "title": "Copy Absolute Path (nova:// format)", "command": "copy-path.nova-absolute" },
{ "title": "Copy Absolute Path with Line Number (nova:// format)", "command": "copy-path.nova-absolute-line" },
{ "title": "Copy Absolute Path with Line & Column Number (nova:// format)", "command": "copy-path.nova-absolute-line-column" },
{ "separator": true},
{ "title": "Copy Relative Path", "command": "copy-path.relative" },
{ "title": "Copy Relative Path with Line Number", "command": "copy-path.relative-line" },
{ "title": "Copy Relative Path with Line & Column Number", "command": "copy-path.relative-line-column" }
] },
"description": "Copies the absolute or relative path of the current file, optionally including the line number and column number.",
"entitlements": { "clipboard": true },
"homepage": "https://github.com/eahanson/copy-path.novaextension",
"identifier": "eahanson.copy-path",
"main": "main.js",
"name": "Copy Path",
"organization": "Erik Hanson",
"repository": "https://github.com/eahanson/copy-path.novaextension",
"version": "1.1"
}