Skip to content

Commit c0dc169

Browse files
committed
v1.2.0
1 parent 0a8aa9f commit c0dc169

File tree

5 files changed

+24
-6
lines changed

5 files changed

+24
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Change Log
22

3+
## 1.2.0
4+
- Add settings
5+
- Display multiple matching files
6+
37
## 1.1.3
48
- Add support for multiple folder

README.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1-
[![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)
2-
# How to use
3-
![How to use](images/use.gif)
1+
[![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)
2+
# How to use
3+
![How to use](images/use.jpg)
4+
![How to use](images/use.gif)
5+
# Settings
6+
## `laravel_goto_view.folders`
7+
Search according to the configured path
8+
```
9+
"laravel_goto_view.folders": {
10+
"default" : "/resources/views",
11+
"theme_xxx": "/resources/views/theme_xxx"
12+
}
13+
```
14+
## `laravel_goto_view.quickJump`
15+
Use 'Ctrl' or 'Alt' + click, jump to the first match file.
16+
## `laravel_goto_view.folderTip`
17+
Display the path name of the configuration

images/use.jpg

12.6 KB
Loading

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "laravel-goto-view",
33
"displayName": "Laravel goto view",
44
"description": "Quick jump to view",
5-
"version": "1.1.3",
5+
"version": "1.2.0",
66
"publisher": "codingyu",
77
"engines": {
88
"vscode": "^1.19.0"
@@ -31,7 +31,7 @@
3131
"type": "object",
3232
"title": "Laravel goto view configuration",
3333
"properties": {
34-
"laravel_goto_view.quickClick": {
34+
"laravel_goto_view.quickJump": {
3535
"type": "boolean",
3636
"default": true,
3737
"description": "Use 'Ctrl' or 'Alt' + click"

src/link.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export class LinkProvider implements DocumentLinkProvider {
99
let documentLinks = [];
1010
let index = 0;
1111
let reg = /(['"])[^'"]*\1/g;
12-
if (config.quickClick) {
12+
if (config.quickJump) {
1313
while (index < document.lineCount) {
1414
let line = document.lineAt(index);
1515
let result = line.text.match(reg);

0 commit comments

Comments
 (0)