Skip to content

Commit fb49f47

Browse files
committed
0.9.0
Added options for removing extension and leading dot.
1 parent 32fd803 commit fb49f47

File tree

3 files changed

+71
-57
lines changed

3 files changed

+71
-57
lines changed

RelativePath-0.8.0.vsix

-5.11 MB
Binary file not shown.

RelativePath-0.9.0.vsix

8.24 KB
Binary file not shown.

package.json

Lines changed: 71 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,60 @@
11
{
2-
"name": "RelativePath",
3-
"description": "Get relative url paths from files in the current workspace.",
4-
"version": "0.8.0",
5-
"repository": {
6-
"type": "git",
7-
"url": "https://github.com/jakob101/RelativePath"
8-
},
9-
"publisher": "jakob101",
10-
"galleryBanner": {
11-
"color": "#373277",
12-
"theme": "dark"
13-
},
14-
"engines": {
15-
"vscode": "^0.10.1"
16-
},
17-
"categories": [
18-
"Other"
19-
],
20-
"license": "MIT",
21-
"displayName": "Relative Path",
22-
"activationEvents": [
23-
"onCommand:extension.relativePath"
24-
],
25-
"main": "./out/src/extension",
26-
"contributes": {
27-
"commands": [{
28-
"command": "extension.relativePath",
29-
"title": "Relative Path"
30-
}],
31-
"keybindings": [{
32-
"command": "extension.relativePath",
33-
"key": "ctrl+shift+h",
34-
"mac": "cmd+shift+h",
35-
"when": "editorTextFocus"
36-
}],
37-
"configuration": {
38-
"title": "RelativePath extension configuration",
39-
"type": "object",
40-
"properties": {
41-
"relativePath.ignore": {
42-
"type": "array",
43-
"default": ["**/node_modules/**","**/*.dll","**/obj/**","**/objd/**"],
44-
"description": "An array of glob keys to ignore when searching.",
2+
"name": "RelativePath",
3+
"description": "Get relative url paths from files in the current workspace.",
4+
"version": "0.9.0",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/jakob101/RelativePath"
8+
},
9+
"publisher": "jakob101",
10+
"galleryBanner": {
11+
"color": "#373277",
12+
"theme": "dark"
13+
},
14+
"engines": {
15+
"vscode": "^0.10.1"
16+
},
17+
"categories": [
18+
"Other"
19+
],
20+
"license": "MIT",
21+
"displayName": "Relative Path",
22+
"activationEvents": [
23+
"onCommand:extension.relativePath"
24+
],
25+
"main": "./out/src/extension",
26+
"contributes": {
27+
"commands": [
28+
{
29+
"command": "extension.relativePath",
30+
"title": "Relative Path"
31+
}
32+
],
33+
"keybindings": [
34+
{
35+
"command": "extension.relativePath",
36+
"key": "ctrl+shift+h",
37+
"mac": "cmd+shift+h",
38+
"when": "editorTextFocus"
39+
}
40+
],
41+
"configuration": {
42+
"title": "RelativePath extension configuration",
43+
"type": "object",
44+
"properties": {
45+
"relativePath.ignore": {
46+
"type": "array",
47+
"default": [
48+
"**/node_modules/**",
49+
"**/*.dll",
50+
"**/obj/**",
51+
"**/objd/**"
52+
],
53+
"description": "An array of glob keys to ignore when searching.",
4554
"items": {
4655
"type": "string"
4756
}
48-
},
57+
},
4958
"relativePath.removeExtension": {
5059
"type": "boolean",
5160
"default": false,
@@ -56,17 +65,22 @@
5665
"default": false,
5766
"description": "Removes the leading ./ character when the path is pointing to a parent folder."
5867
}
59-
}
60-
}
61-
},
62-
"icon": "icon.png",
63-
"keywords": ["relative", "path", "url", "file"],
64-
"scripts": {
65-
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
66-
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
67-
},
68-
"devDependencies": {
69-
"typescript": "^1.6.2",
70-
"vscode": "0.10.x"
71-
}
68+
}
69+
}
70+
},
71+
"icon": "icon.png",
72+
"keywords": [
73+
"relative",
74+
"path",
75+
"url",
76+
"file"
77+
],
78+
"scripts": {
79+
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
80+
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
81+
},
82+
"devDependencies": {
83+
"typescript": "^1.6.2",
84+
"vscode": "0.10.x"
85+
}
7286
}

0 commit comments

Comments
 (0)