Skip to content

Commit

Permalink
Merge pull request #1 from danspam/javascript-support
Browse files Browse the repository at this point in the history
Support TODO highlighting in javascript
  • Loading branch information
HumanGamer authored Mar 4, 2021
2 parents 62ef3b5 + 94eccbb commit 40870cb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# TODO Highlighter
Highlights TODO:, FIXME:, TEMP:, and TMP: prefixed comments in C/C++ and C#
Highlights TODO:, FIXME:, TEMP:, and TMP: prefixed comments in C/C++, Javascript and C#

Credit to: https://github.com/Benio101/Color.Comment for some of the code.
2 changes: 1 addition & 1 deletion TODOHighlighter/Provider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace TODOHighlighter
{
[Export(typeof(IClassifierProvider)), ContentType("C/C++"), ContentType("CSharp")]
[Export(typeof(IClassifierProvider)), ContentType("C/C++"), ContentType("CSharp"), ContentType("JavaScript"), ContentType("TypeScript")]
internal sealed class Provider : IClassifierProvider
{
[Import]
Expand Down
4 changes: 2 additions & 2 deletions TODOHighlighter/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<Metadata>
<Identity Id="TODOHighlighter.caea5ef1-8870-4b74-9d3c-8f0ba91b5d56" Version="1.0.0" Language="en-US" Publisher="Human Gamer" />
<DisplayName>TODO Highlighter</DisplayName>
<Description xml:space="preserve">Highlights TODO:, FIXME:, TEMP:, and TMP: prefixed comments in C/C++ and C#
<Description xml:space="preserve">Highlights TODO:, FIXME:, TEMP:, and TMP: prefixed comments in C/C++, Javascript and C#
Credit to: https://github.com/Benio101/Color.Comment for some of the code.</Description>
<License>License.txt</License>
<Icon>Logo.ico</Icon>
<Tags>C, C++, C#, CSharp, CS, Comment, TODO, FIXME, TEMP, TMP, Highlight, Hightlighter</Tags>
<Tags>C, C++, C#, CSharp, CS, JavaScript, Comment, TODO, FIXME, TEMP, TMP, Highlight, Hightlighter</Tags>
</Metadata>
<Installation>
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[16.0, 17.0)" />
Expand Down

0 comments on commit 40870cb

Please sign in to comment.