File tree Expand file tree Collapse file tree 5 files changed +24
-6
lines changed Expand file tree Collapse file tree 5 files changed +24
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## 1.2.0
4
+ - Add settings
5
+ - Display multiple matching files
6
+
3
7
## 1.1.3
4
8
- Add support for multiple folder
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 2
2
"name" : " laravel-goto-view" ,
3
3
"displayName" : " Laravel goto view" ,
4
4
"description" : " Quick jump to view" ,
5
- "version" : " 1.1.3 " ,
5
+ "version" : " 1.2.0 " ,
6
6
"publisher" : " codingyu" ,
7
7
"engines" : {
8
8
"vscode" : " ^1.19.0"
31
31
"type" : " object" ,
32
32
"title" : " Laravel goto view configuration" ,
33
33
"properties" : {
34
- "laravel_goto_view.quickClick " : {
34
+ "laravel_goto_view.quickJump " : {
35
35
"type" : " boolean" ,
36
36
"default" : true ,
37
37
"description" : " Use 'Ctrl' or 'Alt' + click"
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export class LinkProvider implements DocumentLinkProvider {
9
9
let documentLinks = [ ] ;
10
10
let index = 0 ;
11
11
let reg = / ( [ ' " ] ) [ ^ ' " ] * \1/ g;
12
- if ( config . quickClick ) {
12
+ if ( config . quickJump ) {
13
13
while ( index < document . lineCount ) {
14
14
let line = document . lineAt ( index ) ;
15
15
let result = line . text . match ( reg ) ;
You can’t perform that action at this time.
0 commit comments