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 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
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 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"
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"
Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments