Skip to content

Commit c11cddc

Browse files
committed
v1.3.0
- made the extensions as array - fix npm vulnerabilities
1 parent c9436c0 commit c11cddc

File tree

5 files changed

+975
-202
lines changed

5 files changed

+975
-202
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
out
2-
node_modules
2+
node_modules
3+
.history
4+
*.vsix

README.md

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,43 @@
11
[![Marketplace Version](https://vsmarketplacebadge.apphb.com/version/codingyu.laravel-goto-view.svg)](https://marketplace.visualstudio.com/items?itemName=codingyu.laravel-goto-view) [![Installs](https://vsmarketplacebadge.apphb.com/installs/codingyu.laravel-goto-view.svg)](https://marketplace.visualstudio.com/items?itemName=codingyu.laravel-goto-view)
22

33
# How to use
4+
45
![How to use](images/use.gif)
56

67
# Features
8+
79
- 👨‍💻
810
- Support for custom path
911
- Support for [nwidart/laravel-modules](https://packagist.org/packages/nwidart/laravel-modules)
1012

1113
# Settings
12-
## `laravel_goto_view.folders`
14+
15+
## folders
16+
1317
Search according to the configured path
14-
```
18+
19+
```json
1520
"laravel_goto_view.folders": {
1621
"default" : "/resources/views",
1722
"theme_xxx": "/resources/views/theme_xxx"
1823
}
1924
```
20-
## `laravel_goto_view.extensions`
25+
26+
## extensions
27+
2128
Search views according to the configured extensions
29+
30+
```json
31+
"laravel_goto_view.extensions": [
32+
".blade.php",
33+
".inky.php"
34+
]
2235
```
23-
"laravel_goto_view.extensions": {
24-
"default" : ".blade.php",
25-
"inky": ".inky.php"
26-
}
27-
```
28-
## `laravel_goto_view.quickJump`
29-
Use 'Ctrl' or 'Alt' + click, jump to the first match file.
30-
## `laravel_goto_view.folderTip`
31-
Display the path name of the configuration
36+
37+
## quickJump
38+
39+
- Use `Ctrl` or `Alt` + `click` to jump to the first matched file.
40+
41+
## folderTip
42+
43+
- Display the path name of the configuration

0 commit comments

Comments
 (0)