Skip to content

Commit

Permalink
Update comment regex
Browse files Browse the repository at this point in the history
Correct path to the `configuration` item in package.json
  • Loading branch information
wvoyek committed Oct 22, 2019
1 parent 0b722ef commit e59c5b3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file added .vs/vscode-nginx/v16/.suo
Binary file not shown.
2 changes: 1 addition & 1 deletion .vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="vscode-nginx" Version="0.7.0" Language="en-US" Publisher="william-voyek" />
<Identity Id="vscode-nginx" Version="0.7.2" Language="en-US" Publisher="william-voyek" />
<DisplayName>NGINX</DisplayName>
<Description xml:space="preserve">Syntax highlighting for NGINX configuration files.</Description>
<!--<MoreInfo>http://www.fabrikam.com/Extension1/</MoreInfo>-->
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-nginx",
"displayName": "NGINX Configuration",
"description": "Syntax highlighting for NGINX configuration files",
"version": "0.7.1",
"version": "0.7.2",
"publisher": "william-voyek",
"engines": {
"vscode": "^1.32.0"
Expand All @@ -27,7 +27,7 @@
".conf",
".nginx"
],
"configuration": "./language-configuration.json"
"configuration": "./nginx.configuration.json"
}
],
"grammars": [
Expand Down
2 changes: 1 addition & 1 deletion syntaxes/nginx.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"include": "#strings"
},
{
"match": "\\#.*",
"match": "^(\\s)*(#).*$\\n?",
"name": "comment"
},
{
Expand Down

0 comments on commit e59c5b3

Please sign in to comment.