Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ package-lock.json
*.vsix
.vscode/settings.json
.env
icon.psd
1 change: 1 addition & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ tsconfig.json
vsc-extension-quickstart.md
auto-generated-language-definitions
.github
.env
Comment thread
yCodeTech marked this conversation as resolved.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Automatic Comment Blocks
# <img src="https://raw.githubusercontent.com/yCodeTech/auto-comment-blocks/master/img/icon.png" width="50" height="50" align="center"> Automatic Comment Blocks

<a href="https://marketplace.visualstudio.com/items?itemName=yCodeTech.automatic-comment-blocks"><img alt="Visual Studio Marketplace Version" src="https://img.shields.io/open-vsx/v/yCodeTech/automatic-comment-blocks?label=version&style=for-the-badge"></a>&nbsp;&nbsp;
<a href="https://marketplace.visualstudio.com/items?itemName=yCodeTech.automatic-comment-blocks"><img alt="Visual Studio Marketplace Installs" src="https://img.shields.io/badge/VS_Code_Installs-~1.5k-brightgreen?style=for-the-badge"></a>&nbsp;&nbsp;
<a href="https://open-vsx.org/extension/ycodetech/automatic-comment-blocks"><img alt="Open VSX Registry Installs" src="https://img.shields.io/open-vsx/dt/yCodeTech/automatic-comment-blocks?style=for-the-badge&label=Open%20VSX%20Downloads"></a>

A VScode extension that provides block comment completion for Javadoc-style multi-line comments and single-line comment blocks for [_all_ supported languages](#as-of-v110-this-extension-now-automatically-adds-language-support-and-no-longer-keeps-hardcoded-language-support).

![auto-block-comments](https://raw.githubusercontent.com/yCodeTech/auto-comment-blocks/master/img/auto-comment-blocks.gif)
<img src="https://raw.githubusercontent.com/yCodeTech/auto-comment-blocks/master/img/auto-comment-blocks.gif" height="200">&nbsp;

This is a fork of the original by [kevb34ns](https://github.com/kevb34ns/auto-comment-blocks) with lots of additional support.
This fork of the [original by kevb34ns](https://github.com/kevb34ns/auto-comment-blocks) is published and maintained by **@yCodeTech**.

View the extension on [VScode Marketplace](https://marketplace.visualstudio.com/items?itemName=yCodeTech.automatic-comment-blocks) and on [Open VSX Registry](https://open-vsx.org/extension/ycodetech/automatic-comment-blocks)

Expand Down
Binary file modified img/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "automatic-comment-blocks",
"displayName": "Automatic Comment Blocks",
"description": "Provides block comment completion for Javadoc-style multi-line comments and single-line comment blocks for most officially supported languages.",
"description": "Provides block comment completion for Javadoc-style multi-line comments and single-line comment blocks for all auto-supported languages.",
"version": "1.1.17",
"publisher": "ycodetech",
"homepage": "https://github.com/ycodetech/auto-comment-blocks",
Expand All @@ -12,7 +12,7 @@
"license": "SEE LICENSE IN LICENSE",
"icon": "img/icon.png",
"galleryBanner": {
"color": "#171A29",
"color": "#01092d",
"theme": "dark"
},
"engines": {
Expand Down
Loading