Skip to content

Commit

Permalink
1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
estruyf committed Sep 25, 2024
1 parent 4489fff commit 1023206
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

26 changes: 16 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Hide Comments",
"description": "VSCode extension for people that do not like to see comments in the code. It allows you to hide/show comments in the code.",
"icon": "assets/hide-comments.png",
"version": "1.9.0",
"version": "1.10.0",
"preview": false,
"publisher": "eliostruyf",
"galleryBanner": {
Expand All @@ -12,7 +12,8 @@
},
"license": "MIT",
"author": "Elio Struyf <[email protected]> (https://www.eliostruyf.com)",
"badges": [{
"badges": [
{
"description": "version",
"url": "https://img.shields.io/github/package-json/v/estruyf/vscode-hide-comments?color=green&label=vscode-hide-comments&style=flat-square",
"href": "https://github.com/estruyf/vscode-hide-comments"
Expand Down Expand Up @@ -81,10 +82,12 @@
"description": "Specify the regular expression to use to hide additional lines.",
"default": null,
"examples": [
[{
"regex": "console\\.log\\(([^)]+)\\).*",
"flags": "igm"
}]
[
{
"regex": "console\\.log\\(([^)]+)\\).*",
"flags": "igm"
}
]
],
"items": {
"type": "object",
Expand All @@ -102,7 +105,8 @@
}
}
},
"commands": [{
"commands": [
{
"command": "hidecomments.toggle",
"title": "Hide Comments: Toggle the show/hide of all comments"
},
Expand Down Expand Up @@ -134,7 +138,8 @@
}
],
"menus": {
"editor/title": [{
"editor/title": [
{
"command": "hidecomments.show",
"group": "navigation@-133",
"when": "hideComments.commentsEnabled == false"
Expand All @@ -155,7 +160,8 @@
"when": "hideComments.regexEnabled == true && hideComments.regexUsed == true"
}
],
"commandPalette": [{
"commandPalette": [
{
"command": "hidecomments.regex.hide",
"when": "hideComments.regexEnabled == true"
},
Expand Down Expand Up @@ -188,4 +194,4 @@
"typescript": "^4.0.2",
"vscode-test": "^1.4.0"
}
}
}

0 comments on commit 1023206

Please sign in to comment.