-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from ctf0/master
fix vendor resolving
- Loading branch information
Showing
11 changed files
with
1,066 additions
and
272 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
out | ||
node_modules | ||
node_modules | ||
.history | ||
*.vsix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,6 @@ src/** | |
.gitignore | ||
tsconfig.json | ||
vsc-extension-quickstart.md | ||
.history | ||
jsconfig.json | ||
.eslintrc.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,43 @@ | ||
[![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) | ||
|
||
# How to use | ||
|
||
![How to use](images/use.gif) | ||
|
||
# Features | ||
|
||
- 👨💻 | ||
- Support for custom path | ||
- Support for [nwidart/laravel-modules](https://packagist.org/packages/nwidart/laravel-modules) | ||
|
||
# Settings | ||
## `laravel_goto_view.folders` | ||
|
||
## folders | ||
|
||
Search according to the configured path | ||
``` | ||
|
||
```json | ||
"laravel_goto_view.folders": { | ||
"default" : "/resources/views", | ||
"theme_xxx": "/resources/views/theme_xxx" | ||
} | ||
``` | ||
## `laravel_goto_view.extensions` | ||
|
||
## extensions | ||
|
||
Search views according to the configured extensions | ||
|
||
```json | ||
"laravel_goto_view.extensions": [ | ||
".blade.php", | ||
".inky.php" | ||
] | ||
``` | ||
"laravel_goto_view.extensions": { | ||
"default" : ".blade.php", | ||
"inky": ".inky.php" | ||
} | ||
``` | ||
## `laravel_goto_view.quickJump` | ||
Use 'Ctrl' or 'Alt' + click, jump to the first match file. | ||
## `laravel_goto_view.folderTip` | ||
Display the path name of the configuration | ||
|
||
## quickJump | ||
|
||
- Use `Ctrl` or `Alt` + `click` to jump to the first matched file. | ||
|
||
## folderTip | ||
|
||
- Display the path name of the configuration |
Oops, something went wrong.