You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, you will need to install Visual Studio Code 0.10. In the command palette (`Ctrl-Shift-P` or `Cmd-Shift-P`) select `Install Extension` and choose `RelativePath`.
10
+
First, you will need to install Visual Studio Code. In the command palette (`Ctrl-Shift-P` or `Cmd-Shift-P`) select `Install Extension` and choose `RelativePath`.
11
11
12
12
## Important
13
13
Your workspace may be really big, so please wait for the initial file list to be created. This will happen only once.
14
14
15
15
## Options
16
-
The following Visual Studio Code setting is available for the RelativePath extension. It can be set in user preferences (`ctrl+,` or `cmd+,`) or workspace settings (.vscode/settings.json).
The following Visual Studio Code settings are available for the RelativePath extension. They can be set in user preferences (`ctrl+,` or `cmd+,`) or workspace settings (.vscode/settings.json).
17
+
```javascript
18
+
// An array of glob keys to ignore when searching.
19
+
"relativePath.ignore": [
20
+
"**/node_modules/**",
21
+
"**/*.dll",
22
+
"**/obj/**",
23
+
"**/objd/**"
24
+
],
25
+
26
+
// Excludes the extension from the relative path url (Useful for systemjs imports).
27
+
"relativePath.removeExtension":false,
28
+
29
+
// Removes the leading ./ character when the path is pointing to a parent folder.
30
+
"relativePath.removeLeadingDot":false
31
+
```
21
32
22
33
## Bugs
23
34
Report them [here](https://github.com/jakob101/RelativePath).
0 commit comments