Skip to content

Commit

Permalink
Merge pull request #19 from ctf0/master
Browse files Browse the repository at this point in the history
fix vendor resolving
  • Loading branch information
codingyu authored May 12, 2019
2 parents 9a80efc + 992f977 commit b390e85
Show file tree
Hide file tree
Showing 11 changed files with 1,066 additions and 272 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
out
node_modules
node_modules
.history
*.vsix
3 changes: 3 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ src/**
.gitignore
tsconfig.json
vsc-extension-quickstart.md
.history
jsconfig.json
.eslintrc.json
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 1.3.0
- add a way to stop the extension from search big files
- fix vendor resolveing

## 1.2.5
- Optimize regular expressions

Expand Down
36 changes: 24 additions & 12 deletions README.md
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
Loading

0 comments on commit b390e85

Please sign in to comment.