fabiospampinato / vscode-todo-plus

Manage todo lists with ease. Powerful, easy to use and customizable.
MIT License
902 stars 228 forks source link

Support tags with hyphens #375

Open happytree718 opened 1 year ago

happytree718 commented 1 year ago

Related Issue

This PR resolves Issue #371

Description

This PR improves the handling of custom tags in two ways:

  1. Tags with hyphens are now correctly recognized and processed by updating the regular expression for tags. This change ensures that tags containing hyphens, such as high-complexity, are properly detected and highlighted in their entirety instead of just the portion before the hyphen.

  2. An additional feature has been implemented to handle cases where the number of custom tags exceeds the number of provided colors in the settings. In such situations, the extension will now reuse the available colors by wrapping around the color index. This ensures that all custom tags have a background color, even when the number of tags exceeds the number of provided colors.