Skip to content

Commit

Permalink
Fix parsing php short tags #5
Browse files Browse the repository at this point in the history
  • Loading branch information
pwarchol committed May 11, 2021
1 parent b623a19 commit d643f55
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 0.3.2

- Fix parsing php short tags #5

## 0.3.1

- Multiple files to pick, fix for path match
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-php-file-link",
"displayName": "PHP File Link",
"description": "This extension allows to assign links to files declared as strings in the active PHP document.",
"version": "0.3.1",
"version": "0.3.2",
"publisher": "pwarchol",
"icon": "images/logo.png",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/DocumentParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class DocumentParser {
withPositions: true
},
lexer: {
shortTags: true
short_tags: true
}
};

Expand Down

0 comments on commit d643f55

Please sign in to comment.