Skip to content

Commit b390e85

Browse files
authored
Merge pull request #19 from ctf0/master
fix vendor resolving
2 parents 9a80efc + 992f977 commit b390e85

11 files changed

+1066
-272
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
out
2-
node_modules
2+
node_modules
3+
.history
4+
*.vsix

.vscodeignore

+3
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@ src/**
77
.gitignore
88
tsconfig.json
99
vsc-extension-quickstart.md
10+
.history
11+
jsconfig.json
12+
.eslintrc.json

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## 1.3.0
4+
- add a way to stop the extension from search big files
5+
- fix vendor resolveing
6+
37
## 1.2.5
48
- Optimize regular expressions
59

README.md

+24-12
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)