Skip to content

Commit

Permalink
Version 0.0.129
Browse files Browse the repository at this point in the history
  • Loading branch information
Gruntfuggly committed Apr 17, 2019
1 parent c081139 commit f6cb7c7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v0.0.129 - 2019-04-17
- Add "scan open files only"/"scan workspace" toggle button
- Fix previous fix (sigh)

# v0.0.128 - 2019-04-16
- Use old highlight mechanism if no tag is extracted from the match

Expand Down
3 changes: 1 addition & 2 deletions highlights.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,7 @@ function highlight( editor )
var match;
while( ( match = regex.exec( text ) ) !== null )
{
var extracted = utils.extractTag( match[ 0 ] );
var tag = extracted.tag;
var tag = match[ 0 ];
var offsetStart = match.index;
var offsetEnd = offsetStart + match[ 0 ].length;

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"tasklist",
"multi-root ready"
],
"version": "0.0.128",
"version": "0.0.129",
"icon": "resources/todo-tree.png",
"publisher": "Gruntfuggly",
"engines": {
Expand Down

0 comments on commit f6cb7c7

Please sign in to comment.